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