

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following is the correct output for the program given below?
int main() { int arr[5] = {12, 23); printf("%d%d%d n", a[2], a[3], a[4]); return 0; } |
A. | Garbage values |
B. | 2 3 3 |
C. | 3 2 2 |
D. | 0 0 0 |
Answer» E. | |