int a = 7;
int *c = &a;
c = c + 1;
cout  << a << "  " << *c << endl;
Options
Garbage_value 7
7 Garbage_value
8 8
7 7


7 Garbage_value
