Did you mean: what is the output of the following y=10
following if y=10. Z=(++y*(y++ +5));
Answers
Answered by
2
- Write the output of the following code.
Given,
y=10;
z=(++y*(y++ + 5))
Or,
z = 11 * (11+5)
Or,
z=11*16
Or,
z=176
- The value of z is 176.
Similar questions