evaluate a*=(10+20)
Answers
Answered by
1
Explanation:
Normally most would say the answer is 29 as a++ will give 10 and --b will give 19, summing up you get 29, but it depends on how you use that value.
If you look at the code, you can see that there is only a single sequence point, which is the semicolon.
The issue of sequence points come when you try to do something like either of the statements below:
b = a++ + --b
a = a++ + --b
Similar questions