Possible Duplicate:
Declaring pointers; asterisk on the left or right of the space between the type and name?
Does it matter where I place the asterisk when declaring pointers in C++?
I searched, but my keywords don't seem to fit. I'm pretty sure this question has already been asked., so point me in some direction if you know a link or something !
My question is, why do so many people use
TypeIdentifier *varname;
Instead of
TypeIdentifier* varname;
which is much more logical to me as the *
modifies the type and not the variable name.