<?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: 0.6 &#8212; Compiling your first program</title>
	<atom:link href="http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.learncpp.com/cpp-tutorial/06-writing-your-first-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: Wayne Wilhelm</title>
		<link>http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/comment-page-3/#comment-96858</link>
		<dc:creator>Wayne Wilhelm</dc:creator>
		<pubDate>Fri, 20 Jan 2012 06:43:55 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=15#comment-96858</guid>
		<description>With a little effort, Hello World welcomed me into the world of Microsoft Visual C++ 2010 Express.

In the early 1990s, I acquired numerous programming books and Borland&#039;s 4.52 C++ compiler designed for Windows 95.  While I dabbled some, my work fell to the wayside.

Having viewed your website and with the successful download / install of MS Visual C++ 2010 Express, (mid-January 2012), let&#039;s see how well I do. When I tried EXE files from my 1990&#039;s compiler on Windows 7 operating system, they didn&#039;t work.  I&#039;m hoping to resolve that problem with Microsoft&#039;s newer compiler.  I&#039;ll be working on your tutorial using Windows XP Pro. However, I have a laptop with Windows 7 which I can test the programs on.

Wish me luck! (or skill, depending upon your point of view.)</description>
		<content:encoded><![CDATA[<p>With a little effort, Hello World welcomed me into the world of Microsoft Visual C++ 2010 Express.</p>
<p>In the early 1990s, I acquired numerous programming books and Borland&#8217;s 4.52 C++ compiler designed for Windows 95.  While I dabbled some, my work fell to the wayside.</p>
<p>Having viewed your website and with the successful download / install of MS Visual C++ 2010 Express, (mid-January 2012), let&#8217;s see how well I do. When I tried EXE files from my 1990&#8242;s compiler on Windows 7 operating system, they didn&#8217;t work.  I&#8217;m hoping to resolve that problem with Microsoft&#8217;s newer compiler.  I&#8217;ll be working on your tutorial using Windows XP Pro. However, I have a laptop with Windows 7 which I can test the programs on.</p>
<p>Wish me luck! (or skill, depending upon your point of view.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Runeony1</title>
		<link>http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/comment-page-3/#comment-96772</link>
		<dc:creator>Runeony1</dc:creator>
		<pubDate>Sun, 01 Jan 2012 00:34:18 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=15#comment-96772</guid>
		<description>Hey guys I am completely new to c++ as like some of you guys and I know for the Windpws 7 version of c++ 2010 express that it immediately closes after you hit start debugging. Well, put system(&quot;pause&quot;);
right before the return 0; and it should work.</description>
		<content:encoded><![CDATA[<p>Hey guys I am completely new to c++ as like some of you guys and I know for the Windpws 7 version of c++ 2010 express that it immediately closes after you hit start debugging. Well, put system(&#8220;pause&#8221;);<br />
right before the return 0; and it should work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: C++ or Python &#124; nujakcities</title>
		<link>http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/comment-page-3/#comment-96623</link>
		<dc:creator>C++ or Python &#124; nujakcities</dc:creator>
		<pubDate>Tue, 13 Dec 2011 10:46:27 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=15#comment-96623</guid>
		<description>[...] I had several errors in my code to fix before my application would run. That&#8217;s pretty sad but at least I can admit it. I am not a fan of the :: syntax or the need for semicolons to end the line. Also, the main routine line seems a bit &#8220;syntaxy&#8221;. It wasn&#8217;t my first c++ program but I still needed this cheat sheet: http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/ [...]</description>
		<content:encoded><![CDATA[<p>[...] I had several errors in my code to fix before my application would run. That&#8217;s pretty sad but at least I can admit it. I am not a fan of the :: syntax or the need for semicolons to end the line. Also, the main routine line seems a bit &#8220;syntaxy&#8221;. It wasn&#8217;t my first c++ program but I still needed this cheat sheet: <a href="http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/" rel="nofollow">http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: worldtraveller321</title>
		<link>http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/comment-page-3/#comment-96286</link>
		<dc:creator>worldtraveller321</dc:creator>
		<pubDate>Thu, 03 Nov 2011 17:20:23 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=15#comment-96286</guid>
		<description>Ok Now I got Xcode to work.

So you all know I use Apple Computer
a IMac desktop

I am not able to get the separate screen to work when i run a simple program.

So here is my program just a Helloworld program

Code:
#include 



int main()

{
int mynumber;
mynumber = 34
cout &lt;&lt; &quot; my number is &quot;;
cout &lt;&lt; &quot;Hello world!&quot; &lt;&lt; endl;
cout &lt;&lt; mynumber;
system(&quot;pause&quot;);
return 0;

}


So when i run it in Xcode, it works. it says Run Succeeded
however i am supposed to get a second pop screen like a command prompt, like same when i run program on my Windows computer
that has &quot;hello world&quot; and 34 etc.

What function on Xcode do i use to make this happen?
thanks</description>
		<content:encoded><![CDATA[<p>Ok Now I got Xcode to work.</p>
<p>So you all know I use Apple Computer<br />
a IMac desktop</p>
<p>I am not able to get the separate screen to work when i run a simple program.</p>
<p>So here is my program just a Helloworld program</p>
<p>Code:<br />
#include </p>
<p>int main()</p>
<p>{<br />
int mynumber;<br />
mynumber = 34<br />
cout &lt;&lt; &quot; my number is &quot;;<br />
cout &lt;&lt; &quot;Hello world!&quot; &lt;&lt; endl;<br />
cout &lt;&lt; mynumber;<br />
system(&quot;pause&quot;);<br />
return 0;</p>
<p>}</p>
<p>So when i run it in Xcode, it works. it says Run Succeeded<br />
however i am supposed to get a second pop screen like a command prompt, like same when i run program on my Windows computer<br />
that has &quot;hello world&quot; and 34 etc.</p>
<p>What function on Xcode do i use to make this happen?<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: worldtraveller321</title>
		<link>http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/comment-page-3/#comment-96285</link>
		<dc:creator>worldtraveller321</dc:creator>
		<pubDate>Thu, 03 Nov 2011 17:19:29 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=15#comment-96285</guid>
		<description>Ok Now I got Xcode to work.

I am not able to get the separate screen to work when i run a simple program.

So here is my program just a Helloworld program

Code:
#include 



int main()

{
int mynumber;
mynumber = 34
cout &lt;&lt; &quot; my number is &quot;;
cout &lt;&lt; &quot;Hello world!&quot; &lt;&lt; endl;
cout &lt;&lt; mynumber;
system(&quot;pause&quot;);
return 0;

}


So when i run it in Xcode, it works. it says Run Succeeded
however i am supposed to get a second pop screen like a command prompt, like same when i run program on my Windows computer
that has &quot;hello world&quot; and 34 etc.

What function on Xcode do i use to make this happen?
thanks</description>
		<content:encoded><![CDATA[<p>Ok Now I got Xcode to work.</p>
<p>I am not able to get the separate screen to work when i run a simple program.</p>
<p>So here is my program just a Helloworld program</p>
<p>Code:<br />
#include </p>
<p>int main()</p>
<p>{<br />
int mynumber;<br />
mynumber = 34<br />
cout &lt;&lt; &quot; my number is &quot;;<br />
cout &lt;&lt; &quot;Hello world!&quot; &lt;&lt; endl;<br />
cout &lt;&lt; mynumber;<br />
system(&quot;pause&quot;);<br />
return 0;</p>
<p>}</p>
<p>So when i run it in Xcode, it works. it says Run Succeeded<br />
however i am supposed to get a second pop screen like a command prompt, like same when i run program on my Windows computer<br />
that has &quot;hello world&quot; and 34 etc.</p>
<p>What function on Xcode do i use to make this happen?<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 16.1 &#8212; The Standard Template Library (STL) &#171; Learn C++</title>
		<link>http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/comment-page-3/#comment-96000</link>
		<dc:creator>16.1 &#8212; The Standard Template Library (STL) &#171; Learn C++</dc:creator>
		<pubDate>Sun, 11 Sep 2011 23:41:04 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=15#comment-96000</guid>
		<description>[...] not have known it, you&#8217;ve actually been using the STL since your very first program back in lesson 0.6, when you included iostream. iostream (and our friend cout) are part of the [...]</description>
		<content:encoded><![CDATA[<p>[...] not have known it, you&#8217;ve actually been using the STL since your very first program back in lesson 0.6, when you included iostream. iostream (and our friend cout) are part of the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cppraider</title>
		<link>http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/comment-page-3/#comment-95955</link>
		<dc:creator>cppraider</dc:creator>
		<pubDate>Thu, 01 Sep 2011 19:12:31 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=15#comment-95955</guid>
		<description>in order to run HelloWorld.cpp the command would be ./HelloWorld
here... its .\HelloWorld given... may b its just a mistake... plz make it correct... thanks a ton for these tutorials... they are really helpful... thanks a google....!!!</description>
		<content:encoded><![CDATA[<p>in order to run HelloWorld.cpp the command would be ./HelloWorld<br />
here&#8230; its .\HelloWorld given&#8230; may b its just a mistake&#8230; plz make it correct&#8230; thanks a ton for these tutorials&#8230; they are really helpful&#8230; thanks a google&#8230;.!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/comment-page-3/#comment-95914</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 22 Aug 2011 11:39:24 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=15#comment-95914</guid>
		<description>I am using the code blocks IDE software and when I go to create a project it takes me to this setup wizard which titled 
&quot;console application&quot; which I had previously selected. It then gives me the option of creating a debug configuration (with more advanced options presented underneath) or creating a release configuration (&quot;&quot;) but I do not understand whether to leave all the tick boxes at default (which i have already tried once after restarting the project and it then tells me under the Build log the following &quot;&quot;HelloWorld - Debug&quot; uses an invalid compiler. Probably the toolchain path within the compiler options is not setup correctly?! Skipping...
Nothing to be done.&quot; 
Does anybody know which options to select?</description>
		<content:encoded><![CDATA[<p>I am using the code blocks IDE software and when I go to create a project it takes me to this setup wizard which titled<br />
&#8220;console application&#8221; which I had previously selected. It then gives me the option of creating a debug configuration (with more advanced options presented underneath) or creating a release configuration (&#8220;&#8221;) but I do not understand whether to leave all the tick boxes at default (which i have already tried once after restarting the project and it then tells me under the Build log the following &#8220;&#8221;HelloWorld &#8211; Debug&#8221; uses an invalid compiler. Probably the toolchain path within the compiler options is not setup correctly?! Skipping&#8230;<br />
Nothing to be done.&#8221;<br />
Does anybody know which options to select?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zingmars</title>
		<link>http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/comment-page-3/#comment-95894</link>
		<dc:creator>zingmars</dc:creator>
		<pubDate>Sat, 20 Aug 2011 15:28:27 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=15#comment-95894</guid>
		<description>And it&#039;s the same thing C too. C is actually what inspired most languages, including Java, that&#039;s why they feel similar, yet are different.</description>
		<content:encoded><![CDATA[<p>And it&#8217;s the same thing C too. C is actually what inspired most languages, including Java, that&#8217;s why they feel similar, yet are different.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MrA</title>
		<link>http://www.learncpp.com/cpp-tutorial/06-writing-your-first-program/comment-page-3/#comment-95848</link>
		<dc:creator>MrA</dc:creator>
		<pubDate>Thu, 11 Aug 2011 21:12:36 +0000</pubDate>
		<guid isPermaLink="false">http://learncpp.com/?p=15#comment-95848</guid>
		<description>Have successfully loaded up CodeBlocks now... and am pleased to say that I&#039;m up and running. Mr A</description>
		<content:encoded><![CDATA[<p>Have successfully loaded up CodeBlocks now&#8230; and am pleased to say that I&#8217;m up and running. Mr A</p>
]]></content:encoded>
	</item>
</channel>
</rss>

