In some cases, I could write like this:↵
↵
~~~~~↵
If(f==true)a++,b++;↵
~~~~~↵
Instead of↵
↵
~~~~~↵
If(f==true){a++;b++;}↵
~~~~~↵
↵
↵
↵
However, sometimes I can't write like that and the compiler showesd errors, can anybody teach me how to use the comma properly? I think it will improve my coding speed by alot.↵
Thanks.↵
↵
↵
↵
↵
~~~~~↵
If(f==true)a++,b++;↵
~~~~~↵
Instead of↵
↵
~~~~~↵
If(f==true){a++;b++;}↵
~~~~~↵
↵
↵
↵
However, sometimes I can't write like that and the compiler showe
Thanks.↵
↵
↵
↵



