修改字符串文字为什么当我运行这个程序时没有输出。#include<stdio.h>int main(){ char* t="C++"; t[1]='p'; t[2]='p'; printf("%s",t); return 0;} 查看完整描述