1.

What will be the output of the following C code?
 #include <stdio.h>
int main()
{
int array[5] = {11, 12, 13, 14, 15};
int *ptr = array + 7;
printf("%d n", ptr[-3]);
}

A. 11
B. 12
C. 13
D. 14
E. 15
Answer» F.


Discussion

No Comment Found