0
What is ++a?
4 Answers
+ 4
it means increase value of a by 1.
so, if a was 1
++a will return 2.
PS: notice that ++a and a++ are not the same.
a++ will execute the line, then increase a by 1.
++a will increase a by 1, then execute the line.
0
okay thanks man
- 1
GO KILL YOUR SELF
- 2
die