C 速查手冊
11.6.4 puts()
stdio.h 的函數 (function) puts() 將字串 (string) 傳送到標準輸出裝置。
以下程式示範使用 puts() 的結果
#include <stdio.h>
int main(void)
{
char *c1 = "Hello";
puts(c1);
return 0;
}
/* 《程式語言教學誌》的範例程式
http://kaiching.org/
檔名:cputs.c
功能:示範 stdio.h 中函數 puts() 的使用
作者:張凱慶 */
編譯後執行,結果如下
$ gcc cputs.c |
$ a.out |
Hello |
$ |