标签: c string
为什么我不能这样做: const char* poos = (char[])"poos"; 但是我可以做到: const char* superPoos = (char[]){'p','o','o','s','\0'}; 我知道前者是没有必要的,我只是想了解...的性质 C中的字符串文字。
const char* poos = (char[])"poos";
const char* superPoos = (char[]){'p','o','o','s','\0'};