標準出力、標準エラー出力のテスト用プログラム (VC++ for Windows 7)

このページでは標準出力、標準エラー出力をテスト的に行うテストプログラムを紹介します。


スポンサード リンク

#include "stdafx.h"

int main(int argc, char* argv[])
{
fprintf(stdout, "This is stdout\n");

fprintf(stderr, "This is stderr\n");


return 0;
}

プログラムのダウンロード:ss.lzh

以下プログラムの実行例です。それぞれ以下の出力を行います。

標準出力:This is stdout
標準エラー出力:This is stderr

c:\>ss
This is stdout
This is stderr

スポンサード リンク

[戻る]