Computer Science, asked by Slashslash, 6 months ago

Is it the expression x ++ is as same as
x+ = 1 ? Why?​

Answers

Answered by ayushks070707
1

Answer:

x++ =

x = x+1

Explanation:

  1. x++ is an increment operator..
  2. And x++ = add 1 into x
Similar questions