int a=7, p=0, q=0; p= ++a + --a; q -= p;
The output of q will be:
110 Likes
-15
Answered By
21 Likes
double c; int x, y, z; x = 5; y = 10; z = 11; c = x*y+z/2;
The value stored in c is:
int m, p; m = 5; p = 0; p = m-- + --m;
The output will be: