puts
標準出力ファイル(stdout)へ文字列を出力します。
[指定形式]
#include <stdio.h>
long puts(const char *s);
[引数]
s 出力する文字列へのポインタ
[戻り値]
正常:0
異常:0以外
[備考]
puts関数は、sの指す文字列を標準出力ファイル(stdout)へ出力します。この時、文字列の終了を示す文字は出力されず、代わりに改行文字を出力します。
puts関数は、通常0を返しますが、エラー発生の時は0以外の値を返します。