Computer Science, asked by kaitlynnrod00, 3 months ago

Evaluate the following expressions,if the values of the variable are:

a=2, b=11 and c=4

i) a - (b++) * (- - c);
ii) a * (++b) %c;​

Answers

Answered by AabhashBhowmick
1

Answer:

32

Explanation:

a - (b++) * (--c)

2 - (11++) * (3)

2 - 33++

2 - 34

32

hope it helped

Similar questions