<?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.1 &#8212; Structure of a program</title>
	<atom:link href="http://www.learncpp.com/cpp-tutorial/11-structure-of-a-program/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.learncpp.com/cpp-tutorial/11-structure-of-a-program/</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: 1.5 — A first look at operators &#171; kickasscomputing</title>
		<link>http://www.learncpp.com/cpp-tutorial/11-structure-of-a-program/comment-page-2/#comment-96728</link>
		<dc:creator>1.5 — A first look at operators &#171; kickasscomputing</dc:creator>
		<pubDate>Fri, 23 Dec 2011 08:14:18 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=19#comment-96728</guid>
		<description>[...] the section Introduction to programming, we had defined an expression as “A mathematical entity that evaluates to a value”. However, [...]</description>
		<content:encoded><![CDATA[<p>[...] the section Introduction to programming, we had defined an expression as “A mathematical entity that evaluates to a value”. However, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A first look at operators &#124; 4sharesite</title>
		<link>http://www.learncpp.com/cpp-tutorial/11-structure-of-a-program/comment-page-2/#comment-96687</link>
		<dc:creator>A first look at operators &#124; 4sharesite</dc:creator>
		<pubDate>Sun, 18 Dec 2011 13:18:18 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=19#comment-96687</guid>
		<description>[...] the section Introduction to programming, we had defined an expression as “A mathematical entity that evaluates to a value”. However, [...]</description>
		<content:encoded><![CDATA[<p>[...] the section Introduction to programming, we had defined an expression as “A mathematical entity that evaluates to a value”. However, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shivam</title>
		<link>http://www.learncpp.com/cpp-tutorial/11-structure-of-a-program/comment-page-2/#comment-96200</link>
		<dc:creator>shivam</dc:creator>
		<pubDate>Tue, 25 Oct 2011 15:51:10 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=19#comment-96200</guid>
		<description>#include 

int main()
{
	using namespace std;
int x;
x = 5;
cout &lt;&lt; x;

	system(&quot;pause&quot;);
	return 0;
}

You need to use pause command to pause the program in compilers like dev-c++
Hope it helps</description>
		<content:encoded><![CDATA[<p>#include </p>
<p>int main()<br />
{<br />
	using namespace std;<br />
int x;<br />
x = 5;<br />
cout &lt;&lt; x;</p>
<p>	system(&quot;pause&quot;);<br />
	return 0;<br />
}</p>
<p>You need to use pause command to pause the program in compilers like dev-c++<br />
Hope it helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pmc24</title>
		<link>http://www.learncpp.com/cpp-tutorial/11-structure-of-a-program/comment-page-2/#comment-96126</link>
		<dc:creator>pmc24</dc:creator>
		<pubDate>Sun, 09 Oct 2011 20:20:36 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=19#comment-96126</guid>
		<description>Consistency issue.

For beginners, the move from 

&lt;code&gt; using namespace std; &lt;/code&gt;

to 

&lt;code&gt; std:: &lt;/code&gt; 

might be confusing. 

Hence I suggest amending the example code accordingly, or leaving a note at the end of the tutorial highlighting the interchangeability feature of the two.</description>
		<content:encoded><![CDATA[<p>Consistency issue.</p>
<p>For beginners, the move from </p>
<p><code> using namespace std; </code></p>
<p>to </p>
<p><code> std:: </code> </p>
<p>might be confusing. </p>
<p>Hence I suggest amending the example code accordingly, or leaving a note at the end of the tutorial highlighting the interchangeability feature of the two.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alejandro</title>
		<link>http://www.learncpp.com/cpp-tutorial/11-structure-of-a-program/comment-page-2/#comment-95762</link>
		<dc:creator>Alejandro</dc:creator>
		<pubDate>Wed, 20 Jul 2011 04:08:27 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=19#comment-95762</guid>
		<description>To fix up that code put the using namespace std; out-side the main function for example

#include 
using namespace std;

int main ()
{
 cout &lt;&lt;&quot;\nYour Code Here&quot;;
 return 0;
}

Always remember Preprocessors go outside functions GL</description>
		<content:encoded><![CDATA[<p>To fix up that code put the using namespace std; out-side the main function for example</p>
<p>#include<br />
using namespace std;</p>
<p>int main ()<br />
{<br />
 cout &lt;&lt;&quot;\nYour Code Here&quot;;<br />
 return 0;<br />
}</p>
<p>Always remember Preprocessors go outside functions GL</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: betefeel</title>
		<link>http://www.learncpp.com/cpp-tutorial/11-structure-of-a-program/comment-page-2/#comment-95647</link>
		<dc:creator>betefeel</dc:creator>
		<pubDate>Thu, 30 Jun 2011 05:40:11 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=19#comment-95647</guid>
		<description>I started doing some things on my own hehehe

#include 

int main()
{
	
	int x;
	int y;
	int d;
	int f;
	x = 5;
	y = 5;
	d = x + y;
	f = d + d;

	using namespace std;
	cout &lt;&lt;  x + y &lt;&lt; endl;
	cout &lt;&lt;  f &lt;&lt; endl;
	return 0;</description>
		<content:encoded><![CDATA[<p>I started doing some things on my own hehehe</p>
<p>#include </p>
<p>int main()<br />
{</p>
<p>	int x;<br />
	int y;<br />
	int d;<br />
	int f;<br />
	x = 5;<br />
	y = 5;<br />
	d = x + y;<br />
	f = d + d;</p>
<p>	using namespace std;<br />
	cout &lt;&lt;  x + y &lt;&lt; endl;<br />
	cout &lt;&lt;  f &lt;&lt; endl;<br />
	return 0;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zingmars</title>
		<link>http://www.learncpp.com/cpp-tutorial/11-structure-of-a-program/comment-page-2/#comment-95638</link>
		<dc:creator>zingmars</dc:creator>
		<pubDate>Mon, 27 Jun 2011 10:14:53 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=19#comment-95638</guid>
		<description>Depends on your needs. Experiment a bit, and find your own perfect color scheme.</description>
		<content:encoded><![CDATA[<p>Depends on your needs. Experiment a bit, and find your own perfect color scheme.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adaio</title>
		<link>http://www.learncpp.com/cpp-tutorial/11-structure-of-a-program/comment-page-2/#comment-95637</link>
		<dc:creator>Adaio</dc:creator>
		<pubDate>Sun, 26 Jun 2011 22:57:28 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=19#comment-95637</guid>
		<description>Which is suitable font and text color when I&#039;m running Visual C++ in High Contrast mode of my Windows 7?</description>
		<content:encoded><![CDATA[<p>Which is suitable font and text color when I&#8217;m running Visual C++ in High Contrast mode of my Windows 7?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sachinbhanushali</title>
		<link>http://www.learncpp.com/cpp-tutorial/11-structure-of-a-program/comment-page-2/#comment-95631</link>
		<dc:creator>sachinbhanushali</dc:creator>
		<pubDate>Sun, 26 Jun 2011 10:50:01 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=19#comment-95631</guid>
		<description>Visit &lt;a href=&quot;http://www.computereducation.co.cc&quot; title=&quot;computer education The IT Blog&quot; rel=&quot;nofollow&quot;&gt; The IT Blog for eBooks N Solutions with Lots of Hacking Tricks</description>
		<content:encoded><![CDATA[<p>Visit <a href="http://www.computereducation.co.cc" title="computer education The IT Blog" rel="nofollow"> The IT Blog for eBooks N Solutions with Lots of Hacking Tricks</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wesley_fung2</title>
		<link>http://www.learncpp.com/cpp-tutorial/11-structure-of-a-program/comment-page-2/#comment-95550</link>
		<dc:creator>wesley_fung2</dc:creator>
		<pubDate>Sun, 12 Jun 2011 21:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=19#comment-95550</guid>
		<description>ohhh... every nice i understand!
thanks! learncpp.com</description>
		<content:encoded><![CDATA[<p>ohhh&#8230; every nice i understand!<br />
thanks! learncpp.com</p>
]]></content:encoded>
	</item>
</channel>
</rss>

