Why do most C programmers name variables like this:
int *myVariable;
rather than like this:
int* myVariable;
Because it makes more sense when you have declarations like:
int *a, *b;