

MCQOPTIONS
Saved Bookmarks
1. |
What would be output of the following program, if the array begins at 65486 ? main() { int arr[ ] = {12, 14, 15, 23, 45}; printf(“%u%u”, arr+1, &arr+1); } |
A. | 65486, 65486 |
B. | 65488, 65488 |
C. | 65488, 65496 |
D. | None of the above |
Answer» D. None of the above | |