+ 1
Is x+=1 the same as x++?
6 Answers
+ 9
Yes!!!
+ 3
yes đ
+ 2
yes
0
yes as it is also the same as x equals X Plus 1
0
no x++ is defined in c language
0
yes,if that is the complete expression...however x++ can be part of more complex expressions......... ex:. y= x++ + y; etc .....in such cases we cannot use x+=1;