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
$

上一頁 11.6.3 putchar()
回 C 速查手冊 - 標準程式庫分類索引
下一頁 11.6.5 printf()
回 C 速查手冊 - 標準程式庫導覽
回 C 速查手冊首頁
回 C 教材首頁
回程式語言教材首頁