Why do most C programmers name variables like this:
int *myVariable;
rather than like this:
int* myVariable;
If you look at it another way, *myVariable is of type int, which makes some sense.
*myVariable
int