give the output of x= ++x + x ++ * ++x – x where x = 4
Answers
Answered by
0
Answer:
x' = 35
Explanation:
++x changes the value of x before it is used (pre-increment).
x++ changes the value of x after it is used (post-increment).
Similar questions