What\'s the difference between:
char * const
and
const char *
const * char
is invalid C code and is meaningless. Perhaps you meant to ask the difference between a const char *
and a char const *
, or possibly the difference between a const char *
and a char * const
?