Computer Science, asked by AvinashSahu1396, 5 months ago

x=4 ; x+=(x++)+(++x)+x​

Answers

Answered by BrainlyProgrammer
1

Answer:

Given,x=4

x+=x++ + ++x +x

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

>>>x=4+(4 + 6 + 6)

>>>x= 4+16

>>>x=20

Similar questions