1.

What will be the output of the following C code?#include <stdio.h> void main() { int var = 151; int *p1 = &var; int **p2 = &p1; printf("%d, %d, %d n", var, *p1, **p2); }

A. Garbage value, 151, 151
B. 151, 151, Garbage value
C. Compilation Error
D. 151, 151, 151
E. None of these
Answer» E. None of these


Discussion

No Comment Found