What is the type of string literal in C? Is it char * or const char * or const char * const?
char *
const char *
const char * const
What about C++?
They used to be of type char[]. Now they are of type const char[].
char[]
const char[]