<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: 1.10 &#8212; A first look at the preprocessor</title>
	<atom:link href="http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 12:30:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Constants &#171; Learn C++ Programming</title>
		<link>http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/comment-page-1/#comment-96837</link>
		<dc:creator>Constants &#171; Learn C++ Programming</dc:creator>
		<pubDate>Fri, 13 Jan 2012 09:01:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/?p=33#comment-96837</guid>
		<description>[...] avoid using literal constants that aren’t 0 or 1. For more detail, you can review the section on magic numbers, and why they are a bad [...]</description>
		<content:encoded><![CDATA[<p>[...] avoid using literal constants that aren’t 0 or 1. For more detail, you can review the section on magic numbers, and why they are a bad [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Header files &#171; Learn C++ Programming</title>
		<link>http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/comment-page-1/#comment-96834</link>
		<dc:creator>Header files &#171; Learn C++ Programming</dc:creator>
		<pubDate>Fri, 13 Jan 2012 06:05:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/?p=33#comment-96834</guid>
		<description>[...] two parts. The first part is called a header guard, which is discussed in the next lesson (on the preprocessor). The second part is the actual content of the .h file, which should be the declarations for all of [...]</description>
		<content:encoded><![CDATA[<p>[...] two parts. The first part is called a header guard, which is discussed in the next lesson (on the preprocessor). The second part is the actual content of the .h file, which should be the declarations for all of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 1.9 — Header files &#171; kickasscomputing</title>
		<link>http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/comment-page-1/#comment-96730</link>
		<dc:creator>1.9 — Header files &#171; kickasscomputing</dc:creator>
		<pubDate>Fri, 23 Dec 2011 08:24:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/?p=33#comment-96730</guid>
		<description>[...] two parts. The first part is called a header guard, which is discussed in the next lesson (on the preprocessor). The second part is the actual content of the .h file, which should be the declarations for all of [...]</description>
		<content:encoded><![CDATA[<p>[...] two parts. The first part is called a header guard, which is discussed in the next lesson (on the preprocessor). The second part is the actual content of the .h file, which should be the declarations for all of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Header files &#124; 4sharesite</title>
		<link>http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/comment-page-1/#comment-96685</link>
		<dc:creator>Header files &#124; 4sharesite</dc:creator>
		<pubDate>Sun, 18 Dec 2011 13:06:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/?p=33#comment-96685</guid>
		<description>[...] two parts. The first part is called a header guard, which is discussed in the next lesson (on the preprocessor). The second part is the actual content of the .h file, which should be the declarations for all of [...]</description>
		<content:encoded><![CDATA[<p>[...] two parts. The first part is called a header guard, which is discussed in the next lesson (on the preprocessor). The second part is the actual content of the .h file, which should be the declarations for all of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Constants &#124; 4sharesite</title>
		<link>http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/comment-page-1/#comment-96678</link>
		<dc:creator>Constants &#124; 4sharesite</dc:creator>
		<pubDate>Sun, 18 Dec 2011 12:43:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/?p=33#comment-96678</guid>
		<description>[...] avoid using literal constants that aren’t 0 or 1. For more detail, you can review the section on magic numbers, and why they are a bad [...]</description>
		<content:encoded><![CDATA[<p>[...] avoid using literal constants that aren’t 0 or 1. For more detail, you can review the section on magic numbers, and why they are a bad [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: YamNahar</title>
		<link>http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/comment-page-1/#comment-96579</link>
		<dc:creator>YamNahar</dc:creator>
		<pubDate>Thu, 08 Dec 2011 18:15:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/?p=33#comment-96579</guid>
		<description>At this step 
    #define MY_NAME  &quot;Alex&quot; 
    cout &lt;&lt; &quot;Hello, &quot; &lt;&lt; MY_NAME &lt;&lt; endl;
i get 2 errors: 
error C2143: syntax error : missing &#039;;&#039; before &#039;&lt;&lt;&#039;
error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
what&#039;s wrong? I did something wrong, or was something wrong?</description>
		<content:encoded><![CDATA[<p>At this step<br />
    #define MY_NAME  &#8220;Alex&#8221;<br />
    cout &lt;&lt; &quot;Hello, &quot; &lt;&lt; MY_NAME &lt;&lt; endl;<br />
i get 2 errors:<br />
error C2143: syntax error : missing &#039;;&#039; before &#039;&lt;&lt;&#039;<br />
error C4430: missing type specifier &#8211; int assumed. Note: C++ does not support default-int<br />
what&#039;s wrong? I did something wrong, or was something wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trophy</title>
		<link>http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/comment-page-1/#comment-96246</link>
		<dc:creator>Trophy</dc:creator>
		<pubDate>Tue, 01 Nov 2011 05:50:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/?p=33#comment-96246</guid>
		<description>Wouldn&#039;t you not need to add the header guards in add.h and subtract.h since the issue is with mymath.h being called twice and not the other two? Or is this just good form?</description>
		<content:encoded><![CDATA[<p>Wouldn&#8217;t you not need to add the header guards in add.h and subtract.h since the issue is with mymath.h being called twice and not the other two? Or is this just good form?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SWEngineer</title>
		<link>http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/comment-page-1/#comment-95116</link>
		<dc:creator>SWEngineer</dc:creator>
		<pubDate>Sat, 22 Jan 2011 10:00:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/?p=33#comment-95116</guid>
		<description>Simply well explained tutorial. Thanks a lot.

I just spotted a small typo here:

#Include tells the preprocessor......

Shouldn&#039;t #Include be #include with lowercase &quot;i&quot;?</description>
		<content:encoded><![CDATA[<p>Simply well explained tutorial. Thanks a lot.</p>
<p>I just spotted a small typo here:</p>
<p>#Include tells the preprocessor&#8230;&#8230;</p>
<p>Shouldn&#8217;t #Include be #include with lowercase &#8220;i&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lackadaisy</title>
		<link>http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/comment-page-1/#comment-95082</link>
		<dc:creator>lackadaisy</dc:creator>
		<pubDate>Wed, 29 Dec 2010 10:42:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/?p=33#comment-95082</guid>
		<description>I just wanted to leave a note saying this is the most amazing tutorial ever. I hated programming but I think I might start liking it quite a bit now because I finally understand it!</description>
		<content:encoded><![CDATA[<p>I just wanted to leave a note saying this is the most amazing tutorial ever. I hated programming but I think I might start liking it quite a bit now because I finally understand it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dominator_X</title>
		<link>http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/comment-page-1/#comment-94978</link>
		<dc:creator>Dominator_X</dc:creator>
		<pubDate>Tue, 30 Nov 2010 13:23:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/?p=33#comment-94978</guid>
		<description>Hi there! I want to know what is n stands for? For example int nYen2 = nDollars2 

I am trying to learn C++ whit your turorials but dont get a point for that. Thank you in advance!</description>
		<content:encoded><![CDATA[<p>Hi there! I want to know what is n stands for? For example int nYen2 = nDollars2 </p>
<p>I am trying to learn C++ whit your turorials but dont get a point for that. Thank you in advance!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

