#include <stdio.h> void main() { int var = 151; int *p1 = &var; int **p2 = &p1; printf("%d, %d, %d\n", var, *p1, **p2); }
151, 151, 151
Previous Question Next Question
Your comments will be displayed only after manual approval.