<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>Worth Living &#187; ファイル処理・I/O入出力</title>
	<atom:link href="https://worthliv.com/category/cpp/cpp-file/feed" rel="self" type="application/rss+xml" />
	<link>https://worthliv.com</link>
	<description>楽しく幸せに人生を送るためにはどうすれば良いのか？人生の要素をお金、仕事、勉強、プライベート、健康、心の6要素に分類して考察しています。プログラミング入門に関する記事も掲載。</description>
	<lastBuildDate>Wed, 09 Mar 2016 04:20:46 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/category/cpp/cpp-file/feed" />
	<item>
		<title>std::printf・std::scanf／Cの出力・入力関数</title>
		<link>https://worthliv.com/cpp_stdprintfstdscanfc.html</link>
		<comments>https://worthliv.com/cpp_stdprintfstdscanfc.html#comments</comments>
		<pubDate>Tue, 11 Jun 2013 09:32:18 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[ファイル処理・I/O入出力]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1382</guid>
		<description><![CDATA[C++では、フォーマット済みの出力に演算子を利用します。 Cの場合は、std::printf、std::scanfを使用します。 スポンサーリンク #include &#60;cstdio&#62; int main() { [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_stdprintfstdscanfc.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_stdprintfstdscanfc.html" />
	</item>
		<item>
		<title>CのI/Oライブラリ・ファイル読み取りと書き込み</title>
		<link>https://worthliv.com/cpp_cio.html</link>
		<comments>https://worthliv.com/cpp_cio.html#comments</comments>
		<pubDate>Tue, 11 Jun 2013 09:02:34 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[ファイル処理・I/O入出力]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1381</guid>
		<description><![CDATA[C++では、CのI/Oライブラリも利用できる。 std::sscanf, std::sprintfなどの文字列変換は、C++でも利用可能です。 CのI/Oは、標準インクルードファイルに含まれます。 スポンサーリンク ファ [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_cio.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_cio.html" />
	</item>
		<item>
		<title>readとwrite・バッファを使用しないI/O</title>
		<link>https://worthliv.com/cpp_readwriteio.html</link>
		<comments>https://worthliv.com/cpp_readwriteio.html#comments</comments>
		<pubDate>Tue, 11 Jun 2013 07:50:07 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[ファイル処理・I/O入出力]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1380</guid>
		<description><![CDATA[read （読み込み） スポンサーリンク バッファを使用しないI/Oにおける、ファイルの入力（読み込み）は、read構文を用います。 読み取りサイズ = read(ファイルディスクリプタ, バッファ, サイズ); ・読み [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_readwriteio.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_readwriteio.html" />
	</item>
		<item>
		<title>バッファを使用しないI/O</title>
		<link>https://worthliv.com/cpp_io_3.html</link>
		<comments>https://worthliv.com/cpp_io_3.html#comments</comments>
		<pubDate>Tue, 11 Jun 2013 06:01:10 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[ファイル処理・I/O入出力]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1379</guid>
		<description><![CDATA[バッファを使用しないI/Oでは、データはバッファリングされずに、すぐに出力・ファイル送信が行われます。 読み取りや書き込みなどのシステムコールの頻度を少なくするためには、バッファを使用するI/Oを用いるようにします。 大 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_io_3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_io_3.html" />
	</item>
		<item>
		<title>バイナリデータ・バイナリファイルのI/O</title>
		<link>https://worthliv.com/cpp_io_2.html</link>
		<comments>https://worthliv.com/cpp_io_2.html#comments</comments>
		<pubDate>Tue, 11 Jun 2013 05:18:58 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[ファイル処理・I/O入出力]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1378</guid>
		<description><![CDATA[コンピュータは、バイナリデータを扱います。 バイナリファイルは、ASCIIファイルよりも領域をとらず、変換ルーチンも必要ありません。 しかし、プリンタや端末に出力の際には、人間が読み取るのは困難です。 バイナリファイルの [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_io_2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_io_2.html" />
	</item>
		<item>
		<title>ASCIIコードの実験</title>
		<link>https://worthliv.com/cpp_ascii.html</link>
		<comments>https://worthliv.com/cpp_ascii.html#comments</comments>
		<pubDate>Tue, 11 Jun 2013 05:04:43 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[ファイル処理・I/O入出力]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1377</guid>
		<description><![CDATA[ASCIIコードの実験。 コンピュータは、バイナリデータを扱い、ASCII文字の文字列は数字のコードに変換される。 ASCII文字の&#8221;0&#8243;はコード48に、ASCII文字の&#8221;1&#824 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_ascii.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_ascii.html" />
	</item>
		<item>
		<title>出力ファイル・オープンフラグ</title>
		<link>https://worthliv.com/cpp_post_48.html</link>
		<comments>https://worthliv.com/cpp_post_48.html#comments</comments>
		<pubDate>Tue, 11 Jun 2013 03:54:45 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[ファイル処理・I/O入出力]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1375</guid>
		<description><![CDATA[C++では、ファイルへの出力（書き込み）も、入力（読み込み）同様に可能です。 ファイルのデータを入力（読み込み）／iostream・fstreamで、使ったデータファイルを用いて、読み込んだファイルのデータを、別のファイ [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_48.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_48.html" />
	</item>
		<item>
		<title>変換ルーチン・I/O変換フラグ</title>
		<link>https://worthliv.com/cpp_io.html</link>
		<comments>https://worthliv.com/cpp_io.html#comments</comments>
		<pubDate>Tue, 11 Jun 2013 03:28:32 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[ファイル処理・I/O入出力]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1374</guid>
		<description><![CDATA[ディスク上のファイルだけでなく、プリンタ、通信回線などのデバイスもファイルとして扱われます。 数値をプリンタや端末に出力するには、数値を文字へと変換する必要があります。 「123」という数字は、「&#8221;1&#82 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_io.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_io.html" />
	</item>
		<item>
		<title>ファイルのデータを入力（読み込み）／iostream・fstream</title>
		<link>https://worthliv.com/cpp_iostreamfstream.html</link>
		<comments>https://worthliv.com/cpp_iostreamfstream.html#comments</comments>
		<pubDate>Tue, 11 Jun 2013 03:19:09 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[ファイル処理・I/O入出力]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1373</guid>
		<description><![CDATA[C++のファイルI/O（入出力）は、入出力に使用するiostreamクラスを利用します。 #include は、これまでも何度も登場してきました。 スポンサーリンク ディスクファイルへのI/Oを実行するには、std::i [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_iostreamfstream.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_iostreamfstream.html" />
	</item>
	</channel>
</rss>
