Assume the given declarations and fill in the value of the expression. int a = 1, b = 2. C = 3;
Expression: a+++—b
Answers
Answered by
0
Answer:
2
Explanation:
the value of a is first used then it increases as it is a post fix increment (a++) but in case of variable b it first changes then uses as it is a prefix decremeant ( - - b)
Similar questions