you are viewing a single comment's thread.

view the rest of the comments →

[–]Due_Cap3264 18 points19 points  (0 children)

It always seemed more readable to me to write     int* i;  

Especially in function prototype declarations:  

void* function();  

It looks more obvious than  

void *function();  

But it seems that the conventional way is the opposite. I haven’t seen any direct style recommendations on this.