字符指針與字符數組的初始化

#include<stdlib.h> #include<stdio.h> int main(){ char *p="hello"; char c[10]="hello"; puts(p); puts(c); c[0]='H'; //p[0]='H';不可修改 puts(c); p="world"; //c[10]="world";無法改變 //c="world";非法 puts(c); syste
相關文章
相關標籤/搜索