

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the program ?_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ void fun(int, int[]);_x000D_ int arr[] = {1, 2, 3, 4};_x000D_ int i;_x000D_ fun(4, arr);_x000D_ for(i=0; i |
A. | 2, 3, 4, 5 |
B. | 1, 2, 3, 4 |
C. | 0, 1, 2, 3 |
D. | 3, 2, 1 0 |
Answer» C. 0, 1, 2, 3 | |