Computer Science, asked by BRBehera2003, 11 months ago

Wht is the value of 'y' after evaluating the expression given below ?
y + = ++y + y-- + --y ; when int y = 8

Answers

Answered by suraj62111
17

it will definitely help u

Attachments:
Answered by Anonymous
20

The expression y+= ++y + y – – + – –y can be written as y= y+ (++y + y-- + -- y). If initial value of y is 8 then final value of y= 8+ (9 + 9 + 7) = 33.

Similar questions