For example,
char * first = "Hello World!";
My questions is,
Is the string literal stored in memory? (If it is I guess the pointer
firstis the address of inital element of the string literal "Hello World")If not, then is some kind of random pointer value stored in
first?