int a[] = {1, 2, 3, 4};
int *p = a++;
cout << *p << endl;
Options
1
2
Garbage value
Error

Error
