Advertisements
Advertisements
प्रश्न
What will be the output of the following code?
If int y = 10 then find int z = ( ++y * (y++ + 5));
संक्षेप में उत्तर
उत्तर
176
Working:
z = ( ++y * (y++ + 5))
= 11 * (11 + 5)
= 11 * 16
= 176
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 1.04: Operators in Java - EXERCISES [पृष्ठ ४४]