what will be the value of a after evaluating the following expression: where a = 4:
a+=a++ + ++a+a
Answers
Answered by
0
Answer:
Given, a=4
a = a + a++ + ++a + a
= 4 + 4 + 6 + 6
= 20
Similar questions