Computer Science, asked by saumya3173, 11 months ago

if int Y =10 then find
intZ = (+ + Y *(Y + + +5))​

Answers

Answered by gurukulamdivya
2

Answer:

++y means prefix where value is increased by 1 and then printed

y++ means postfix where value is printed first then increased in memory

So,  (+ + Y *(Y + + +5))​

=(11*(11+5))

=(11*16)

=176

Similar questions