Computer Science, asked by shweta6474, 9 months ago

What will be the result stored in x after evaluating the following expressions?
int, x=4; x + = (x++) + (++x) + x

please tell me answer ​

Answers

Answered by nidhikhandelwal655
1

Answer:

4+ 6+6=16

Explanation:

x+=16 ...

is it 17

Answered by Sweetkiller72
0

x = x + (x++) + (++x) + x

x = 4 + ( 4 ) + ( 1 + 5 ) + 6

x = 4 + 4 + 6 + 6

x = 8 + 12

x = 20

Mark me as brainlist__"__"__!!!!!!

Similar questions