Computer Science, asked by kskiller160926, 5 months ago

.Is there any difference in the following declarations? int fun(int arr[]); int fun(int arr[2]);​

Answers

Answered by nehabhosale454
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 sonalkhoond7
0

Answer:

Happy Makar Sakranti

Similar questions