#include <stdio.h> int main() { int s1 = 5; //, s2 = 9; const int *ptr = &s1; *ptr++; printf("%d\n", *ptr); }
Garbage value 1989385672
Previous Question Next Question
Your comments will be displayed only after manual approval.