比如將s的內容復制到n
char *s="hello world";
char *n;
strcpy(n,s);
之後再打印n的內容,如果是printf("%s",n);的話 結果就是“hello world”
但是如果是逐個打印
for(int i=0;i<strlen(n);i++){
printf("%c",n[i]);
}
運行時會出現Segmentation fault: 11
(1) 對於指針必須初始化,char * n = NULL;
(2) 沒有然後了