功 能
: 送一字元串到流stdout中
用 法
int puts(const char *string);
程式例
:
初學者要注意以下例子
:
從此例中可看到puts輸出字元串時要遇到'\0’也就是字元結束符才停止,如上面的程式加上一句 string[10]="\0";
運行就正確了
說明
:
(1). puts()函式只能輸出字元串, 不能輸出數值或進行格式變換。
(2). 可以將字元串直接寫入puts()函式中。如:
puts("Hello, world!");
(3). puts 和 printf的用法一樣,puts()函式的作用與語句“printf("%s\n",s);的作用相同。注意:puts在輸出字 符串後會自動輸出一個回車符。
puts()函式的一種實現方案如下: