Computer Science, asked by aisha001, 6 months ago

3) Evaluate the value of 'n' if m=12
int n=m++*5 + --m,​

Attachments:

Answers

Answered by Oreki
0

After Execution:

n = 72

Explanation:

> n = m++ * 5 + --m, m = 12,

> n = 12 * 5 + 12

> n = 60 + 12

> n = 72

Similar questions