I am new to C. I read that we can define a pointer like
int *pointername
However, I also read a piece of coding like the following
int * pointername
So my question is whether the blank is optional in this case?
More broadly speaking, could anyone summarize how blanks are used in C, please? For example, are two blanks the same as one blank? When is a blank necessary and when is it optional? ...
As pointed out in a comment, I am also asking for general question on treatment of blanks in C. So please do not close this question. Thank you.