If int y =10 then find int z = (++y\*(y+++5));
If int y =10 then find int z = (++y * (y++ + 5));
87 Likes
z = 176
z = (++y * (y++ + 5))⇒ z = (11 * (11 + 5))⇒ z = (11 * 16)⇒ z = 176
Answered By
52 Likes