

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { int array[4] = {11, 12, 13, 14}; int *ptr1 = array; int *ptr2 = &ptr1; printf("%d", (**ptr2)); } |
A. | 11 |
B. | 12 |
C. | 13 |
D. | 14 |
E. | Compilation Error |
Answer» F. | |