Enter the value of result:
int a = 4;
int b = a++;
int c = --a + b++;
int result = ++a - (c++ - b) + c;Enter the value of result:
int a = 4;
int b = a++;
int c = --a + b++;
int result = ++a - (c++ - b) + c;Create a free account to access the full topic