I was wondering about how people format their code, like when you define a pointer, do you do "STRUCT* pointer;" or "STRUCT *pointer;"? Which one is the intended way, or the one which professionals use?
Do you use "pointer -> attribute" or "pointer->attribute" when accessing an attribute of the object your pointer is pointing to?
Are there any more? This is all I can think of right now.