Yes.
p++ == p+= 1 == p = p + 1 are all the same if you use it in an assignment.
p++
p+= 1
p = p + 1
++p is different if you use it in an assignment. If it's in its own line it won't make much difference.
++p
That's the point I was trying to make.
No.
++p returns incremented p.
p += 1 returns incremented p.
p = p + 1 returns incremented p.
p++ returns p before it is incremented.
Right. So i had them the other way around. :D
Thanks for clarifying.
Post funny things about programming here! (Or just rant about your favourite programming language.)
Yes.
p++==p+= 1==p = p + 1are all the same if you use it in an assignment.++pis different if you use it in an assignment. If it's in its own line it won't make much difference.That's the point I was trying to make.
No.
++p returns incremented p.
p += 1 returns incremented p.
p = p + 1 returns incremented p.
p++ returns p before it is incremented.
Right. So i had them the other way around. :D
Thanks for clarifying.