For the most part, whitespace in C is ignored. All three of your examples are functionally identical. You could also say const char*buf
and it'll work fine because the tokens aren't ambiguous. However, constchar
won't work.
Another bit of trivia is that const
doesn't have to go before the type: char const *buf
. This can make declarations easier to decipher as they're typically read inside out and right to left: char const * const buf
reads as "buf is a const pointer to const char".