int x = 5;
int y = 2;
int c;
c = (x++) + (++x) + (y--) + (y--) + (y++);
System.out.print (“ ” + c);
what will be the value of c.
Answers
Answered by
0
Answer:
after one space it will print 15
Explanation:
c=(x++)+(++x) +(y--) +(y--) +(y++)
5+7+2+1+0
15
Similar questions