(c) Give the output of the following expression:
a+= a++ + ++a + --a + a--; when a = 7;
Answers
Answered by
1
Answer:
a = a + a++ + ++a + --a + a--
a = 7 + 7 + 9 + 8 + 8
a = 39
If it helps rate it 5 star marking it as brainliest.
Answered by
0
Answer:
Explanation:
= a + a++ + ++a + --a + a--
= 7 + 7 + 9 + 8 + 8
a = 39
HOPE IT HELPS IF NOT INGNORE IT
Similar questions