Possible Duplicate:
What’s your preferred pointer declaration style, and why?
Just curious: What's you standard method when declaring pointers? Why?
SomeClass *instance;
OR
SomeClass* instance;
I prefer the second method as it keeps the entire type together (it's a 'SomeClass pointer'). But I know many prefer the first and I'm just curious as to why.