if a=3 , b=4 , c=8 then evaluate a * ( ++b) % c
Answers
Answered by
0
Answer:
7
Explanation:
Since multiplication operator and modulus operator have the same hierarchy, we do the operation on the left side first which makes it
a*(++b)%c
= 3*5%8
=15%8
=7
Similar questions