That would rather be a coder's preference.
For me, I declare pointers by:
int * var1, var2;
Wherein var1 is a pointer, and var2 is not. If you want to declare multiple pointers in a line:
int * var1, * var2;
And of course, using the other ways are valid.