明解C語言入門篇練習題第十一章

練習11-1code #include <stdio.h> int main(void) { char *p = "123"; printf("p = \"%s\"\n", p); p = "456"+1; printf("p = \"%s\"\n", p); return 0; } 練習11-2 補 get 練習11-3input #include <stdio.h> ch
相關文章
相關標籤/搜索