4. Evaluate the following expressions if the values of the variables are a = 2, b = 3, and C=9.
(a) a -(b ++)*(- -c);
(b) a*( ++b)%c;
Answers
Answered by
1
Answer:
(a) 2-(3)*(8)
2-24
= -22
Answered by
3
Answer:
Explanation:
a=2 b=3 c=9
a-(b++)*c
2-(3)*8
2-24
-22
B.
a*(b++)%c
2*4%9
2*0.44
0.88
Hoping my answer is right
Similar questions