明解C語言(入門篇)第九章

1、練習9-1 2、練習9-2 #include<stdio.h> int main(void) { char s[] = "ABC"; printf("字符串爲\"%s\"。\n", s); s[0] = '\0'; printf("字符串爲\"%s\"。\n", s); return 0; } 3、練習9-3 #include<stdio.h> #
相關文章
相關標籤/搜索