Computer Science, asked by AreetraSircar, 1 month ago

int x = 4;
x+ = (x++)+(++x)+x

Please solve this step by step.​

Answers

Answered by sudiptamalakar95
2

Answer:

18

Explanation:

x+=4+6+4

x+=14

x=14+x

=14+4

=18

Similar questions