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:
Qt Code:
  1. char
  2. *
  3. str1,
  4. str2
  5. ;
To copy to clipboard, switch view to plain text mode 

Qt Code:
  1. char *str1
  2. ,str2;
To copy to clipboard, switch view to plain text mode 

Qt Code:
  1. x=5;
To copy to clipboard, switch view to plain text mode 
Qt Code:
  1. x = 5;
To copy to clipboard, switch view to plain text mode 
Qt Code:
  1. x
  2. =5;
To copy to clipboard, switch view to plain text mode 

It is all just about source code readability.