在C語言中,puts
函數用于將字符串輸出到標準輸出設備(通常是屏幕)上。
其語法為:
int puts(const char *str);
該函數接受一個字符串參數str
,并返回一個非負整數。它會將字符串str
輸出到標準輸出設備上,并自動在末尾添加換行符\n
。
示例用法:
#include <stdio.h>
int main() {
puts("Hello, World!"); // 輸出字符串 "Hello, World!"
return 0;
}
輸出結果:
Hello, World!
注意事項:
puts
函數只能用于輸出字符串,不能輸出其他類型的數據。\n
,因此不需要手動添加。puts
函數會返回非負整數,表示輸出成功。如果輸出失敗,它會返回EOF
(即-1
)。