MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program if the array begins at address 65486?_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ int arr[] = {12, 14, 15, 23, 45};_x000D_ printf("%u, %u\n", arr, &arr);_x000D_ return 0;_x000D_ } |
| A. | 65486, 65488 |
| B. | 65486, 65486 |
| C. | 65486, 65490 |
| D. | 65486, 65487 |
| Answer» C. 65486, 65490 | |