<?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>Thu, 09 Sep 2010 12:59:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: kemawalker</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-2/#comment-91476</link>
		<dc:creator>kemawalker</dc:creator>
		<pubDate>Sun, 05 Sep 2010 21:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-91476</guid>
		<description>Thank you for this sight....I just downloaded the latest XCODE from the Apple Dev site and your examples all actually WORK!!  I am tickled that someone finally has something for the mac beginners to learn.</description>
		<content:encoded><![CDATA[<p>Thank you for this sight&#8230;.I just downloaded the latest XCODE from the Apple Dev site and your examples all actually WORK!!  I am tickled that someone finally has something for the mac beginners to learn.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mouna</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-2/#comment-91110</link>
		<dc:creator>mouna</dc:creator>
		<pubDate>Mon, 30 Aug 2010 12:52:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-91110</guid>
		<description>hello all!:)

i have a problem!:(

the command line don&#039;t work!! this is the error-message.

&#039;g + +&#039; is not recognized as internal command
or external, operable program or batch file.


thnak u for ur help!</description>
		<content:encoded><![CDATA[<p>hello all!:)</p>
<p>i have a problem!:(</p>
<p>the command line don&#8217;t work!! this is the error-message.</p>
<p>&#8216;g + +&#8217; is not recognized as internal command<br />
or external, operable program or batch file.</p>
<p>thnak u for ur help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mouna</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-2/#comment-91109</link>
		<dc:creator>mouna</dc:creator>
		<pubDate>Mon, 30 Aug 2010 12:50:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-91109</guid>
		<description>i have  a problem!</description>
		<content:encoded><![CDATA[<p>i have  a problem!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mauricio</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-1/#comment-90675</link>
		<dc:creator>Mauricio</dc:creator>
		<pubDate>Sun, 22 Aug 2010 03:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-90675</guid>
		<description>É possivel fazer um programa c++ para aparecer formas geometricas?</description>
		<content:encoded><![CDATA[<p>É possivel fazer um programa c++ para aparecer formas geometricas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sadat</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-1/#comment-89319</link>
		<dc:creator>Sadat</dc:creator>
		<pubDate>Fri, 30 Jul 2010 19:55:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-89319</guid>
		<description>I&#039;m having a problem with my input file. I use Visual studio 2008 Ex. but I wonder why the following code doesn&#039;t work:

#include ;
#include ;
#include 


using namespace std;
ifstream infile;

int main()
{
string name;
  infile.open(&quot;Result.tx&quot;);
   infile &gt;&gt; name;
   if(!infile)
    {
      cout &lt;&lt;&quot; Input file can&#039;t open&quot;;
    }
 

return 0;
}

 The same code works perfect with previous versions of visual C++ before 2005.
 Anyone can help me with this, I will I will appreciate.

Sas</description>
		<content:encoded><![CDATA[<p>I&#8217;m having a problem with my input file. I use Visual studio 2008 Ex. but I wonder why the following code doesn&#8217;t work:</p>
<p>#include ;<br />
#include ;<br />
#include </p>
<p>using namespace std;<br />
ifstream infile;</p>
<p>int main()<br />
{<br />
string name;<br />
  infile.open(&#8220;Result.tx&#8221;);<br />
   infile &gt;&gt; name;<br />
   if(!infile)<br />
    {<br />
      cout &lt;&lt;&quot; Input file can&#039;t open&quot;;<br />
    }</p>
<p>return 0;<br />
}</p>
<p> The same code works perfect with previous versions of visual C++ before 2005.<br />
 Anyone can help me with this, I will I will appreciate.</p>
<p>Sas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-1/#comment-88480</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Thu, 15 Jul 2010 17:45:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-88480</guid>
		<description>&quot;hello world - Debug&quot; uses an invalid compiler. Probably the toolchain path within the compiler options is not setup correctly?! Skipping...
Nothing to be done.

no idea what to do....</description>
		<content:encoded><![CDATA[<p>&#8220;hello world &#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.</p>
<p>no idea what to do&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tcp</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-1/#comment-87465</link>
		<dc:creator>tcp</dc:creator>
		<pubDate>Wed, 30 Jun 2010 14:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-87465</guid>
		<description>shantanu: try iostream with brackets around it (no .h)
shelbourne: did you put in the &quot;using namespace std&quot; and &quot;#include iostream&quot;? compare your code to the stuff on the page above and see what&#039;s missing

why don&#039;t brackets appear on this page. that&#039;s annoying.</description>
		<content:encoded><![CDATA[<p>shantanu: try iostream with brackets around it (no .h)<br />
shelbourne: did you put in the &#8220;using namespace std&#8221; and &#8220;#include iostream&#8221;? compare your code to the stuff on the page above and see what&#8217;s missing</p>
<p>why don&#8217;t brackets appear on this page. that&#8217;s annoying.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shelbourne</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-1/#comment-87306</link>
		<dc:creator>Shelbourne</dc:creator>
		<pubDate>Sun, 27 Jun 2010 21:24:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-87306</guid>
		<description>I tried that cin stuff but it said cin was an undeclared identifier. I am using Visual c++ 2008 express edition.</description>
		<content:encoded><![CDATA[<p>I tried that cin stuff but it said cin was an undeclared identifier. I am using Visual c++ 2008 express edition.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shantanu</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-1/#comment-86639</link>
		<dc:creator>shantanu</dc:creator>
		<pubDate>Wed, 16 Jun 2010 20:27:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-86639</guid>
		<description>when i debugged this hello world program i get the following error-
c:\c++projects\hello world.cpp\hello world.cpp\hello world.cpp.cpp(8) : fatal error C1083: Cannot open include file: &#039;iostream.h&#039;: No such file or directory
1&gt;Build log was saved at &quot;file://c:\C++Projects\hello world.cpp\hello world.cpp\Debug\BuildLog.htm&quot;
1&gt;hello world.cpp - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========


whats the problem?please tell me...</description>
		<content:encoded><![CDATA[<p>when i debugged this hello world program i get the following error-<br />
c:\c++projects\hello world.cpp\hello world.cpp\hello world.cpp.cpp(8) : fatal error C1083: Cannot open include file: &#8216;iostream.h&#8217;: No such file or directory<br />
1&gt;Build log was saved at &#8220;file://c:\C++Projects\hello world.cpp\hello world.cpp\Debug\BuildLog.htm&#8221;<br />
1&gt;hello world.cpp &#8211; 1 error(s), 0 warning(s)<br />
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========</p>
<p>whats the problem?please tell me&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adam</title>
		<link>http://www.learncpp.com/cpp-tutorial/07-a-few-common-cpp-problems/comment-page-1/#comment-86180</link>
		<dc:creator>adam</dc:creator>
		<pubDate>Wed, 09 Jun 2010 00:14:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/07-a-few-common-c-compilingexecuting-problems/#comment-86180</guid>
		<description>Rak try this:
&lt;pre&gt; int main()
	{
	    using namespace std;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Rak try this:</p>
<pre> int main()
	{
	    using namespace std;
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>
