Computer Science, asked by kshitishojha504, 4 months ago

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 richitha77
0

Answer:

after one space it will print 15

Explanation:

c=(x++)+(++x) +(y--) +(y--) +(y++)

5+7+2+1+0

15

Similar questions