Discussion :: Declarations and Initializations
-
Is there any difference in the following declarations?
int myfun(int arr[]);
int myfun(arr[20]);
Answer : Option A
Explanation :
Yes, we have to specify the data type of the parameter when declaring a function.
Be The First To Comment