What is the value of m after evaluating the following expression:
m - = 9%++n + ++n/2; when int m=10,n=6
Answers
Answered by
8
10-(9%(7+8/2))
10-9%11
10-2
8
answer:m=8
Answered by
5
Answer:
=8
Explanation:
m - = 9%++n + ++n/2;
int m=10,n=6
10-9%(7+(8/2))
10-9%(7+4)
10-9%11
10-2
=8
Similar questions