What is the difference between array parameters in C
- by STeN
Hi,
what is the difference between following function declarations, which create and return the array in C/C++? Both methods create the array and fill it with proper values and returns true if everything passed.
bool getArray(int* array);
bool getArray(int* array[]);
Thanks
Best Regards,
STeN