Computer Science, asked by rahul08837, 1 year ago

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 nbgowda1978p6sfdl
8

10-(9%(7+8/2))

10-9%11

10-2

8

answer:m=8

Answered by shamanthshamanp52jwf
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