Evaluate the following equation,if the variables are a=4 b=2,c=5.
a*(++b)%c
Answers
Answered by
2
Answer:
a) a - (b++) * (--c);
2 - (3) * (8)
2 - 24
-22 Ans
________________________________________
b) a * (++b) % c
2 * 4 % 9
8 % 9
8 Ans
FYI % is symbol of remainder
Explanation:
Similar questions