

MCQOPTIONS
Saved Bookmarks
1. |
int arr[ ] = {1, 2, 3, 4}int count;incr( ) {return ++count;}main( ){arr[count++]=incr( );printf(“arr[count]=%d\n”, arr[count]);}The value printed by the above program is: |
A. | 1 |
B. | 2 |
C. | 3 |
D. | 4 |
Answer» C. 3 | |