Possible Duplicate:
What’s your preferred pointer declaration style, and why?
Should it be:
center: int * number;
left: int* number;
right: int *number;
I see the left one as type centric the right one as variable name centric, and the center one as agnostic, but I'm really not sure. Does one make sense in certain situations and not others? I'd like to do it the right way even though I've heard its subjective. (what do most people do?)
When dereferencing, *variable makes the most sense as you are preforming an action on the variable but declaration is not as clear.