SyntaxFix
Write A Post
Hire A Developer
Questions
You can think of internal conversion of that as a multiple statements;
i++;
you can think it as,
i; i = i+1;
++i;
i = i+i; i;