P
prashna
Hi all,
Is there any difference between the following 2 function prototypes
which accepts an array as argument?
void foo(int arr[]);
void foo(int *arr);
Which of the 2 is the best method of declaring a function prototype
which has array as arguments?
Thanks
Is there any difference between the following 2 function prototypes
which accepts an array as argument?
void foo(int arr[]);
void foo(int *arr);
Which of the 2 is the best method of declaring a function prototype
which has array as arguments?
Thanks