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