<?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"
	>
<channel>
	<title>Comments on: 5.7 &#8212; For statements</title>
	<atom:link href="http://www.learncpp.com/cpp-tutorial/57-for-statements/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.learncpp.com/cpp-tutorial/57-for-statements/</link>
	<description></description>
	<pubDate>Wed, 20 Aug 2008 09:10:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: blas januar</title>
		<link>http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-22831</link>
		<dc:creator>blas januar</dc:creator>
		<pubDate>Tue, 05 Aug 2008 11:22:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-22831</guid>
		<description>nice one poe. . . sana magbigay kapa ng mas maraming example pra mapadali ung assign q. . hhahaha sayang kasi para d2 nalang aq naghanap. . . but tnx nadin poe.. .</description>
		<content:encoded><![CDATA[<p>nice one poe. . . sana magbigay kapa ng mas maraming example pra mapadali ung assign q. . hhahaha sayang kasi para d2 nalang aq naghanap. . . but tnx nadin poe.. .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-15210</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Fri, 09 May 2008 08:57:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-15210</guid>
		<description>&lt;pre&gt;for (int iii=0; iii &#60; 10; jjj++)   
    ;  &lt;/pre&gt;Shouldn't that be this.
&lt;pre&gt;for (int iii=0; iii &#60; 10; iii++, jjj++)   
    ;  &lt;/pre&gt;Great tutorials by the way.

[ I changed the example slightly because it was incorrect, as you noticed.  Thanks! -Alex ]</description>
		<content:encoded><![CDATA[<pre>for (int iii=0; iii &lt; 10; jjj++)
    ;  </pre>
<p>Shouldn&#8217;t that be this.</p>
<pre>for (int iii=0; iii &lt; 10; iii++, jjj++)
    ;  </pre>
<p>Great tutorials by the way.</p>
<p>[ I changed the example slightly because it was incorrect, as you noticed.  Thanks! -Alex ]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Learn C++ - &#187; 5.6 &#8212; Do while statements</title>
		<link>http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-13469</link>
		<dc:creator>Learn C++ - &#187; 5.6 &#8212; Do while statements</dc:creator>
		<pubDate>Tue, 29 Apr 2008 04:48:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-13469</guid>
		<description>[...] 2007      Prev/Next Posts   &#171; Six language-independent ways to write better code &#124; Home &#124; 5.7 &#8212; For statements &#187;     Monday, June 25th, 2007 at 4:54 [...]</description>
		<content:encoded><![CDATA[<p>[...] 2007      Prev/Next Posts   &laquo; Six language-independent ways to write better code | Home | 5.7 &#8212; For statements &raquo;     Monday, June 25th, 2007 at 4:54 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abhishek raj</title>
		<link>http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-9888</link>
		<dc:creator>abhishek raj</dc:creator>
		<pubDate>Mon, 17 Mar 2008 23:55:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-9888</guid>
		<description>hey !!!!!!!!
Thanx a lot...
I read particularly this page and found it too diverse n interesting...
u people should also try this once.

keep enjoying,........</description>
		<content:encoded><![CDATA[<p>hey !!!!!!!!<br />
Thanx a lot&#8230;<br />
I read particularly this page and found it too diverse n interesting&#8230;<br />
u people should also try this once.</p>
<p>keep enjoying,&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamal</title>
		<link>http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-9697</link>
		<dc:creator>Jamal</dc:creator>
		<pubDate>Sun, 16 Mar 2008 20:47:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-9697</guid>
		<description>Thanks a lot for your help.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-9542</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Thu, 13 Mar 2008 21:09:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-9542</guid>
		<description>&lt;pre&gt;
nSum += iii
&lt;/pre&gt;

is just a shortcut for writing:

&lt;pre&gt;
nSum = nSum + iii;
&lt;/pre&gt;

In other words, increase nSum by iii.</description>
		<content:encoded><![CDATA[<pre>
nSum += iii
</pre>
<p>is just a shortcut for writing:</p>
<pre>
nSum = nSum + iii;
</pre>
<p>In other words, increase nSum by iii.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-9526</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 13 Mar 2008 16:08:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-9526</guid>
		<description>Hi;

Can you explain quiz example.? I don't understand the purpose of "nSum += iii;" statement. Particulary nSum +=.
What it will do exactley.
Thanks


int SumTo(int nSumTo)
{
    int nSum = 0;
    for (int iii=1; iii </description>
		<content:encoded><![CDATA[<p>Hi;</p>
<p>Can you explain quiz example.? I don&#8217;t understand the purpose of &#8220;nSum += iii;&#8221; statement. Particulary nSum +=.<br />
What it will do exactley.<br />
Thanks</p>
<p>int SumTo(int nSumTo)<br />
{<br />
    int nSum = 0;<br />
    for (int iii=1; iii</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Niall the don</title>
		<link>http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-2496</link>
		<dc:creator>Niall the don</dc:creator>
		<pubDate>Tue, 06 Nov 2007 19:58:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/57-for-statements/#comment-2496</guid>
		<description>Hello
I think in your second solution nValue should be nSumTo

[Yup!  Thanks for noticing the mistake. -Alex ]</description>
		<content:encoded><![CDATA[<p>Hello<br />
I think in your second solution nValue should be nSumTo</p>
<p>[Yup!  Thanks for noticing the mistake. -Alex ]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
