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