<?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.7 &#8212; A few common C++ problems</title>
	<atom:link href="http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/</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: Compiling your first program &#171; Learn C++ Programming</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-2/#comment-96803</link>
		<dc:creator>Compiling your first program &#171; Learn C++ Programming</dc:creator>
		<pubDate>Mon, 09 Jan 2012 16:43:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-96803</guid>
		<description>[...] This is an issue with some compilers, such as Bloodshed’s Dev-C++. We present a solution to this problem in lesson 0.7 — a few common cpp problems. [...]</description>
		<content:encoded><![CDATA[<p>[...] This is an issue with some compilers, such as Bloodshed’s Dev-C++. We present a solution to this problem in lesson 0.7 — a few common cpp problems. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vignesh</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-2/#comment-96794</link>
		<dc:creator>Vignesh</dc:creator>
		<pubDate>Sat, 07 Jan 2012 00:17:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-96794</guid>
		<description>for all those using dev c++ , this code will work and pause you screen until you enter a character 

#include
using namespace std;
#include

int main()
{
cout&lt;&lt;&quot;hello world!!&quot;;
getch();
return 0;
}

the getch(); is defined in conio.h and takes a character from input without printing to screen. you can see the output until you press a key.

just saying even system(&quot;pause&quot;) will work except that it prints &quot;Press any key to continue&quot; .</description>
		<content:encoded><![CDATA[<p>for all those using dev c++ , this code will work and pause you screen until you enter a character </p>
<p>#include<br />
using namespace std;<br />
#include</p>
<p>int main()<br />
{<br />
cout&lt;&lt;&quot;hello world!!&quot;;<br />
getch();<br />
return 0;<br />
}</p>
<p>the getch(); is defined in conio.h and takes a character from input without printing to screen. you can see the output until you press a key.</p>
<p>just saying even system(&quot;pause&quot;) will work except that it prints &quot;Press any key to continue&quot; .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Compiling your first program &#171; kickasscomputing</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-2/#comment-96722</link>
		<dc:creator>Compiling your first program &#171; kickasscomputing</dc:creator>
		<pubDate>Thu, 22 Dec 2011 13:36:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-96722</guid>
		<description>[...] issue with some compilers, such as Bloodshed’s Dev-C++. We present a solution to this problem in lesson 0.7 — a few common cpp problems. Conclusion Congratulations, you made it through the hardest part of this tutorial (installing the [...]</description>
		<content:encoded><![CDATA[<p>[...] issue with some compilers, such as Bloodshed’s Dev-C++. We present a solution to this problem in lesson 0.7 — a few common cpp problems. Conclusion Congratulations, you made it through the hardest part of this tutorial (installing the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Compiling your first program &#124; 4sharesite</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-2/#comment-96689</link>
		<dc:creator>Compiling your first program &#124; 4sharesite</dc:creator>
		<pubDate>Sun, 18 Dec 2011 13:30:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-96689</guid>
		<description>[...] This is an issue with some compilers, such as Bloodshed’s Dev-C++. We present a solution to this problem in lesson 0.7 — a few common cpp problems. [...]</description>
		<content:encoded><![CDATA[<p>[...] This is an issue with some compilers, such as Bloodshed’s Dev-C++. We present a solution to this problem in lesson 0.7 — a few common cpp problems. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Basic C++ Series &#8211; Part 1 &#171; Nerd-O-Pedia</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-2/#comment-96064</link>
		<dc:creator>Basic C++ Series &#8211; Part 1 &#171; Nerd-O-Pedia</dc:creator>
		<pubDate>Thu, 22 Sep 2011 10:49:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-96064</guid>
		<description>[...] This is an issue with some compilers, such as Bloodshed’s Dev-C++. We present a solution to this problem in lesson 0.7 — a few common cpp problems. [...]</description>
		<content:encoded><![CDATA[<p>[...] This is an issue with some compilers, such as Bloodshed’s Dev-C++. We present a solution to this problem in lesson 0.7 — a few common cpp problems. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Exheon</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-2/#comment-95994</link>
		<dc:creator>Exheon</dc:creator>
		<pubDate>Sat, 10 Sep 2011 01:42:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-95994</guid>
		<description>g++ or Intel C++ would do the jobs I guess

hope ir helps...</description>
		<content:encoded><![CDATA[<p>g++ or Intel C++ would do the jobs I guess</p>
<p>hope ir helps&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kostas81</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-1/#comment-95764</link>
		<dc:creator>Kostas81</dc:creator>
		<pubDate>Wed, 20 Jul 2011 14:24:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-95764</guid>
		<description>Hi Alex,

First of all, thanx about the great tutorial. It really helps a lot!
I have a quick (but I hope not silly ...) question. You write:

[...] gets rid of up to 255 waiting characters in the input stream (or until a n is encountered)

This n mentioned inside the parentheses ... do you mean the new line escape sequence \n? I don&#039;t get it ...

Maybe I have not understood something ... 

Thank you in advance.</description>
		<content:encoded><![CDATA[<p>Hi Alex,</p>
<p>First of all, thanx about the great tutorial. It really helps a lot!<br />
I have a quick (but I hope not silly &#8230;) question. You write:</p>
<p>[...] gets rid of up to 255 waiting characters in the input stream (or until a n is encountered)</p>
<p>This n mentioned inside the parentheses &#8230; do you mean the new line escape sequence \n? I don&#8217;t get it &#8230;</p>
<p>Maybe I have not understood something &#8230; </p>
<p>Thank you in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zingmars</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-2/#comment-95741</link>
		<dc:creator>zingmars</dc:creator>
		<pubDate>Tue, 19 Jul 2011 10:37:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-95741</guid>
		<description>cin &lt;&lt; x; , cin.get() etc.</description>
		<content:encoded><![CDATA[<p>cin &lt;&lt; x; , cin.get() etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: irritated.soul</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-2/#comment-95639</link>
		<dc:creator>irritated.soul</dc:creator>
		<pubDate>Mon, 27 Jun 2011 10:35:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-95639</guid>
		<description>Hi. I&#039;m experiencing some issues debugging after testing the examples explained so far in this tutorial. The issue will arise when the output results are sent to the console: the console screen very quickly exits after the program is run, leaving very little chance for me to view the output. Is there another statement which can be added into the code at the end - to enable the console to stay paused for a short but relative period of time?</description>
		<content:encoded><![CDATA[<p>Hi. I&#8217;m experiencing some issues debugging after testing the examples explained so far in this tutorial. The issue will arise when the output results are sent to the console: the console screen very quickly exits after the program is run, leaving very little chance for me to view the output. Is there another statement which can be added into the code at the end &#8211; to enable the console to stay paused for a short but relative period of time?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zingmars</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-2/#comment-95595</link>
		<dc:creator>zingmars</dc:creator>
		<pubDate>Sun, 19 Jun 2011 17:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-95595</guid>
		<description>http://www.gidnetwork.com/b-61.html
Don&#039;t do that. Please.</description>
		<content:encoded><![CDATA[<p><a href="http://www.gidnetwork.com/b-61.html" rel="nofollow">http://www.gidnetwork.com/b-61.html</a><br />
Don&#8217;t do that. Please.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

