C 語言標準函數庫分類導覽 - stdio.h puts()

stdio.h 的函數 puts() 將字串傳送到標準輸出裝置。



以下程式示範使用 puts() 的結果
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>
 
int main(void)
{
    char *c1 = "Hello";
     
    puts(c1);
     
    return 0;
}
 
/* 《程式語言教學誌》的範例程式
    檔名:cputs.c
    功能:示範 stdio.h 中函數 puts() 的使用
    作者:張凱慶
    時間:西元2010年6月 */


編譯後執行,結果如下



您可以繼續參考


沒有留言: