stdio.h 的函數puts() 將字串傳送到標準輸出裝置。 以下程式示範使用puts() 的結果 #include <stdio.h> int main(void) { char *c1 = "Hello"; puts(c1); return 0; } ...
確定! 回上一頁