1.

What will be the output of the following C code?
 #include <stdio.h>
void main()
{
int num = 14;
int *ptr1 = &num;
int **ptr2 = &ptr1;
**ptr2 = 16;
printf("%d n", num);
}

A. Compilation Error
B. 14
C. Garbage value
D. 16
E. None of these
Answer» E. None of these


Discussion

No Comment Found