Evaluate a - (b++) * (--c) where a = 2,b = 3,c =9
Answers
Answered by
35
Answer:
a-(b++)×(- -c)
=2-3×8
=2-24
-22
Answered by
6
Answer: a=2; b=3; c=9
a-(b++)*(--c)
b++ = n=3
= m=n
= 3=3
b++ = 3
a-(b++)*(--c)
2-3*8
-22
Explanation:
Because in b++ there is no increment as m=n, and in the --c there is a decrease m=n-1
Similar questions