Home / Questions / If int y = 10 then find int z = (++y * (y++ + 5));
Explanatory Question

If int y = 10 then find int z = (++y * (y++ + 5));

👁 73 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation

    z = (++y * (y++ + 5))
⇒ z = (11 * (11 + 5))
⇒ z = (11 * 16)
⇒ z = 176