+ 3
What would happen when we use if(++) or if(1)?
if condition
5 Antworten
+ 1
You should try... the compiler does not compile if for if(++). You can do a if(i++):
https://code.sololearn.com/cFJHSRSQBG0U
+ 3
jerome so,if(i++) and if(1) is always true ,right?
+ 3
Bartosz Pieszko tnx
+ 1
If(++) is incorrect and causes an error.
any number different than 0 is always true.
+ 1
Elham Keshavarz execute the code if(i++) return false. if(i=i+1) return true as the assignment is done correctly.