18.
Evaluate the following
a = 2, b = 3 and c = 3
i. a - (b+ +) * (--C)
Answers
Answered by
0
Explanation:
a) a - (b++) * (--c);
2 - (3) * (8)
2 - 24
-22 Ans
Answered by
1
Answer:
2-3*2= -4
thats it...c is changed because it is --C i.e. number changes before execution and b++means value of b changes after it is executed therefore b remains same while c changes to 2
Similar questions