Is there any difference in the following declarations? int myfun(int arr[]); int myfun(arr[20]);
Answer: A
Yes, we have to specify the data type of the parameter when declaring a function.