find the out the output of the following:
( i ) a+ = a++ + ++a + --a + a-- ; when a = 7
Answers
Answered by
1
ANSWER:
Ans.
a+=a++ + ++a + –-a + a–- ;
a = 7 + (a++ + ++a + -–a + a–-);
a = 7 + (7 + 9 + 8 + 8);
a = 39
Similar questions