.Is there any difference in the following declarations? int fun(int arr[]); int fun(int arr[2]);
Answers
Answered by
15
Answer:
int fun(int arr[2]); And the answer is no, there is no difference between those declarations. Both are equivalent to: int fun(int *arr);
Answered by
0
Answer:
Happy Makar Sakranti
Similar questions