I've been doing this for a while:
int* myIntPointer;
string* myString1,* myString2;
But I've noticed a lot of people do this:
int *myIntPointer;
string *myString1, *myString2;
Which one is more common? Or at least a good programming practice.