<?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; C++プリプロセッサ</title>
	<atom:link href="https://worthliv.com/category/cpp/cpp-preprocessor/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-preprocessor/feed" />
	<item>
		<title>スタックの実装・構造体で表現</title>
		<link>https://worthliv.com/cpp_post_35.html</link>
		<comments>https://worthliv.com/cpp_post_35.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 11:28:06 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[C++プリプロセッサ]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1351</guid>
		<description><![CDATA[スタックを実装するクラスを作る前に、スタックを構造体で考えてみる。 スタック構造体は、以下のように表せます。 スポンサーリンク const int STACK_SIZE = 100; // スタックの最大サイズ // ス [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_35.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_35.html" />
	</item>
		<item>
		<title>パラメータつきのマクロ</title>
		<link>https://worthliv.com/cpp_post_23.html</link>
		<comments>https://worthliv.com/cpp_post_23.html#comments</comments>
		<pubDate>Tue, 04 Jun 2013 15:38:09 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[C++プリプロセッサ]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1335</guid>
		<description><![CDATA[パラメータつきのマクロ定義 スポンサーリンク #define を用いたマクロには、パラメータを渡すことができます。 #define SQR(n) ((n) * (n)) 上記のマクロは、数値を２乗するマクロです。 マクロ [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_23.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_23.html" />
	</item>
		<item>
		<title>#inlude／ヘッダファイル（インクルードファイル）</title>
		<link>https://worthliv.com/cpp_inlude.html</link>
		<comments>https://worthliv.com/cpp_inlude.html#comments</comments>
		<pubDate>Tue, 04 Jun 2013 15:09:21 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[C++プリプロセッサ]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1334</guid>
		<description><![CDATA[これまでもたくさん登場してきましたが、#includeを指定すると、プログラム中に別のファイルのソースコードをインクルードします。 スポンサーリンク #include これは、iostreamという名前のファイルのソース [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_inlude.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_inlude.html" />
	</item>
		<item>
		<title>#ifdef #endif #undef #ifndef／条件付きコンパイル</title>
		<link>https://worthliv.com/cpp_ifdef_endif_undef_ifndef.html</link>
		<comments>https://worthliv.com/cpp_ifdef_endif_undef_ifndef.html#comments</comments>
		<pubDate>Tue, 04 Jun 2013 14:13:19 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[C++プリプロセッサ]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1333</guid>
		<description><![CDATA[プリプロセッサは、条件付きコンパイルが可能であり、デバッグのためのコーディングに役立ちます。 開発中には、デバッグコードを入れておき、プログラムが完成したらデバッグコードを削除したい場合、デバッグコードを用いると便利です [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_ifdef_endif_undef_ifndef.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_ifdef_endif_undef_ifndef.html" />
	</item>
		<item>
		<title>#define／定数定義・マクロ</title>
		<link>https://worthliv.com/cpp_define.html</link>
		<comments>https://worthliv.com/cpp_define.html#comments</comments>
		<pubDate>Tue, 04 Jun 2013 13:23:59 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[C++プリプロセッサ]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1332</guid>
		<description><![CDATA[定数定義 定数を定義するには、#define文を利用します。 PHPでも、同じ名前のdefine関数で定数定義できますが、このC/C++の#defineに由来しているのですね。 スポンサーリンク C/C++を勉強するよう [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_define.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_define.html" />
	</item>
		<item>
		<title>プリプロセッサの働き</title>
		<link>https://worthliv.com/cpp_post_22.html</link>
		<comments>https://worthliv.com/cpp_post_22.html#comments</comments>
		<pubDate>Tue, 04 Jun 2013 13:06:57 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[C++プリプロセッサ]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1331</guid>
		<description><![CDATA[プリプロセッサとは、「前処理系」とも呼ばれ、コンパイルの前に前処理を行うプログラムのことです。 コンパイラにより、ソースコードがオブジェクトコード（機械語）にコンパイルされますが、プリプロセッサは、その前の段階で必要な処 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_22.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_22.html" />
	</item>
	</channel>
</rss>
