Computer Science, asked by aishanyadwivedi18fb2, 9 months ago

what will be the value of a after evaluating the following expression: where a = 4:
a+=a++ + ++a+a

Answers

Answered by mn121
0

Answer:

Given, a=4

a = a + a++ + ++a + a

  = 4 + 4 + 6 + 6

  = 20

Similar questions