Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Is there any difference int the following declarations?
int fun(int arr[]);
int fun(int arr[2]); ?->(Show Answer!)
1. Is there any difference int the following declarations?
int fun(int arr[]);
int fun(int arr[2]);
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.00 pm
No, both the statements are same. It is the prototype for the function fun() that accepts one integer array as an parameter and returns an integer value.