Write output of the following statement if a = 5, b = 3 and c = 2 is given for the expression: a++ + b % c
Answers
Answered by
0
Answer:
a++ + b% c
=5 + 3 %2
=5 + 1
=6
Similar questions