为什么我运行这个程序时没有输出.
#include<stdio.h> int main() { char* t="C++"; t[1]='p'; t[2]='p'; printf("%s",t); return 0; }
c
c ×1