Computer Science, asked by RonakChhetri10, 2 months ago

Evaluate the following equation,if the variables are a=4 b=2,c=5.
a*(++b)%c​

Answers

Answered by luvssamantha1617
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