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