It really doesn't matter
The parser regognizes non-alphanumeric characters as token boundaries, so you may put as much spaces or other characters there. These all are valid as well:
char
*
str1,
str2
;
char
*
str1,
str2
;
To copy to clipboard, switch view to plain text mode
char *str1
,str2;
char *str1
,str2;
To copy to clipboard, switch view to plain text mode
x=5;
x=5;
To copy to clipboard, switch view to plain text mode
x = 5;
x = 5;
To copy to clipboard, switch view to plain text mode
x
=5;
x
=5;
To copy to clipboard, switch view to plain text mode
It is all just about source code readability.
Bookmarks