int a = 50;
 int *ptr = &a;
 cout << (*ptr)++ << “ “;
 cout << a << endl;
 Options
50 51
51 50
51 51
50 50

50 51
