-

「Functions HI-TECH C FPUTS」の版間の差分

提供: HI-TECH C for CP/M Fan WIKI(JP)
移動先: 案内検索
(ページの作成:「<strong>FPUTS</strong> ==概要== #include <stdio.h> int fputs(char * s, FILE * stream) ==詳細== null終端の文字列sがストリームに書き込まれま...」)
 
(相違点なし)

2017年12月21日 (木) 14:12時点における最新版

FPUTS

概要

#include  <stdio.h>

int fputs(char * s, FILE * stream)


詳細

null終端の文字列sがストリームに書き込まれます。newlineは追加されません(puts()を参照)。エラー時にはEOFが返ります。

参照

puts, fgets, fopen, fclose