fprintf、_fprintf_l、fwprintf、_fwprintf_l
ストリームに出力書式付きデータ。 これらの関数のセキュリティを強化したバージョンについては、「fprintf_s、_fprintf_s_l、fwprintf_s、_fwprintf_s_l」を参照してください。
int fprintf(
FILE *stream,
const char *format [,
argument ]...
);
int _fprintf_l(
FILE *stream,
const char *format,
locale_t locale [,
argument ]...
);
int fwprintf(
FILE *stream,
const wchar_t *format [,
argument ]...
);
int _fwprintf_l(
FILE *stream,
const wchar_t *format,
locale_t locale [,
argument ]...
);
パラメーター
stream
FILE 構造体へのポインター。format
書式指定文字列。argument
省略可能な引数。locale
使用するロケール。
戻り値
fprintf を書き込むバイト数を返します。 fwprintf を書き込むワイド文字数を返します。 これらの関数は、出力エラーが発生した場合は負の値を返します。 stream または format が NULLの場合、これらの関数は パラメーターの検証"に説明されているように、無効なパラメーター ハンドラーを呼び出します。 実行の継続が許可された場合、関数は -1 を返し、errno を EINVAL に設定します。 書式指定文字列が有効な書式指定文字があるかどうか fprintf_s または fwprintf_sを使用する場合のときはチェックされません。
エラー コードの詳細については、「_doserrno、errno、_sys_errlist、および _sys_nerr」を参照してください。
解説
fprintf は 出力 stream、一連の文字と値の書式を指定して、出力します*。*各関数 argument は formatの対応する書式指定に従って (存在する場合) に変換され、出力fprintfでは、format 引数に printfと同じ構文を使用できます。
fwprintf は fprintfのワイド文字バージョンであり、; fwprintfで、format はワイド文字列です。 ストリームが ANSI モードで開かれている場合、これらの関数の動作は同じになります。 fprintf では、UNICODE ストリームへの出力はサポートされていません。
_l サフィックスが付いているこれらの関数の各バージョンは、現在のスレッド ロケールの代わりに渡されたロケール パラメーターを使用する点を除いて同じです。
セキュリティに関するメモ |
---|
format にユーザー定義の文字列を指定しないでください。 |
汎用テキスト ルーチンのマップ
TCHAR.H のルーチン |
_UNICODE & _MBCS が未定義の場合 |
_MBCS が定義されている場合 |
_UNICODE が定義されている場合 |
---|---|---|---|
_ftprintf |
fprintf |
fprintf |
fwprintf |
_ftprintf_l |
_fprintf_l |
_fprintf_l |
_fwprintf_l |
詳細については、「scanf 関数と wscanf 関数の書式指定フィールド」を参照してください。
必要条件
関数 |
必須ヘッダー |
---|---|
fprintf, _fprintf_l |
<stdio.h> |
fwprintf, _fwprintf_l |
<stdio.h> または <wchar.h> |
互換性の詳細については、「C ランタイム ライブラリ」の「互換性」を参照してください。
使用例
// crt_fprintf.c
/* This program uses fprintf to format various
* data and print it to the file named FPRINTF.OUT. It
* then displays FPRINTF.OUT on the screen using the system
* function to invoke the operating-system TYPE command.
*/
#include <stdio.h>
#include <process.h>
FILE *stream;
int main( void )
{
int i = 10;
double fp = 1.5;
char s[] = "this is a string";
char c = '\n';
fopen_s( &stream, "fprintf.out", "w" );
fprintf( stream, "%s%c", s, c );
fprintf( stream, "%d\n", i );
fprintf( stream, "%f\n", fp );
fclose( stream );
system( "type fprintf.out" );
}
同等の .NET Framework 関数
System::IO::StreamWriter::Write
参照
関連項目
_cprintf、_cprintf_l、_cwprintf、_cwprintf_l
fscanf、_fscanf_l、fwscanf、_fwscanf_l