//The string "char* pc1" is a read-only literal (formally its type is const char[4]).
// -->char pc1[5] = "john";
// It's a CONST !!! You can't use char* to change constant.
//"Hello, " is a "const char[]",but a "char array"
// It's a CONST !!! You can't use char* to change constant.
// char* pc3; --> error: ‘pc3’ is used uninitialized in this function
// Even if initialized pc3, It's a CONST, too !!!
// You can't use char* to change constant.