<?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 for Learn Programming</title>
	<atom:link href="http://www.c4learn.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.c4learn.com</link>
	<description>Learn Programming Step by Step &#124; Simply Learn C &#124; C++ &#124; JavaScript</description>
	<lastBuildDate>Wed, 22 Feb 2012 17:41:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on How close Java and C# are ? by priteshtaral</title>
		<link>http://www.c4learn.com/2012/02/how-close-java-and-c-are.html#comment-822</link>
		<dc:creator>priteshtaral</dc:creator>
		<pubDate>Wed, 22 Feb 2012 17:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.c4learn.com/?p=5789#comment-822</guid>
		<description>Java is purely platform dependent whereas C# is a Windows-specific language that relies on Windows system foundation (more specifically, on the .Net framework).  Programs written in C# generally can run only on Windows (although it is sometimes possible to make them cross-platform).</description>
		<content:encoded><![CDATA[<p>Java is purely platform dependent whereas C# is a Windows-specific language that relies on Windows system foundation (more specifically, on the .Net framework).  Programs written in C# generally can run only on Windows (although it is sometimes possible to make them cross-platform).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How close Java and C# are ? by Pthanedar</title>
		<link>http://www.c4learn.com/2012/02/how-close-java-and-c-are.html#comment-820</link>
		<dc:creator>Pthanedar</dc:creator>
		<pubDate>Wed, 22 Feb 2012 17:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.c4learn.com/?p=5789#comment-820</guid>
		<description>Nd wat is the difrns betwn the two?</description>
		<content:encoded><![CDATA[<p>Nd wat is the difrns betwn the two?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Number Pyramid Pattern in C Programming by Pritesh</title>
		<link>http://www.c4learn.com/2010/05/number-pyramid-pattern-in-c-programming.html#comment-803</link>
		<dc:creator>Pritesh</dc:creator>
		<pubDate>Tue, 21 Feb 2012 07:47:55 +0000</pubDate>
		<guid isPermaLink="false">http://eshopdetails.com/c/2010/05/number-pyramid-pattern-in-c-programming.html#comment-803</guid>
		<description>#include&lt;stdio.h&gt;
 
long factorial(int);
 
main()
{
   int i, n, c;
 
   printf(&quot;Enter the number of rows you wish to see in pascal triangle\n&quot;);
   scanf(&quot;%d&quot;,&amp;n);
 
   for(i=0;i&lt;n;i++)
   {
      for(c=0;c&lt;=(n-i-2);c++)
         printf(&quot; &quot;);
 
      for(c=0;c&lt;=i;c++)
         printf(&quot;%ld &quot;,factorial(i)/(factorial(c)*factorial(i-c)));
 
      printf(&quot;\n&quot;);
   }
 
   return 0;
}
 
long factorial(int n)
{
   int c;
   long result = 1;
 
   for(c=1;c&lt;=n;c++)
         result = result*c;
 
   return(result);
}
</description>
		<content:encoded><![CDATA[<p>#include<stdio .h></p>
<p>long factorial(int);</p>
<p>main()<br />
{<br />
   int i, n, c;</p>
<p>   printf(&#8220;Enter the number of rows you wish to see in pascal triangle\n&#8221;);<br />
   scanf(&#8220;%d&#8221;,&#038;n);</p>
<p>   for(i=0;i<n;i++)<br />
   {<br />
      for(c=0;c<=(n-i-2);c++)<br />
         printf(&#8221; &#8220;);</p>
<p>      for(c=0;c<=i;c++)<br />
         printf(&#8220;%ld &#8220;,factorial(i)/(factorial(c)*factorial(i-c)));</p>
<p>      printf(&#8220;\n&#8221;);<br />
   }</p>
<p>   return 0;<br />
}</p>
<p>long factorial(int n)<br />
{<br />
   int c;<br />
   long result = 1;</p>
<p>   for(c=1;c<=n;c++)<br />
         result = result*c;</p>
<p>   return(result);<br />
}</stdio></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Number Pyramid Pattern in C Programming by Mahesh</title>
		<link>http://www.c4learn.com/2010/05/number-pyramid-pattern-in-c-programming.html#comment-802</link>
		<dc:creator>Mahesh</dc:creator>
		<pubDate>Tue, 21 Feb 2012 07:25:10 +0000</pubDate>
		<guid isPermaLink="false">http://eshopdetails.com/c/2010/05/number-pyramid-pattern-in-c-programming.html#comment-802</guid>
		<description>1
                            1 2 1
                          1 3 3 1
                        1 4 6 4 1
                     1 5 10 10 5 1
Hw cn i print this pattern???
Plz help..........</description>
		<content:encoded><![CDATA[<p>1<br />
                            1 2 1<br />
                          1 3 3 1<br />
                        1 4 6 4 1<br />
                     1 5 10 10 5 1<br />
Hw cn i print this pattern???<br />
Plz help&#8230;&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is the difference between constant to pointer and pointer to constant? by topsoil Hockessin</title>
		<link>http://www.c4learn.com/2012/01/what-is-the-difference-between-constant-to-pointer-and-pointer-to-constant.html#comment-772</link>
		<dc:creator>topsoil Hockessin</dc:creator>
		<pubDate>Sun, 19 Feb 2012 23:36:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.c4learn.com/?p=2966#comment-772</guid>
		<description>Just want to say your article is as astounding. The clearness in your post is simply cool and i could think you&#039;re an expert on this subject. Fine along with your permission allow me to take hold of your feed to stay up to date with drawing close post. Thanks 1,000,000 and please carry on the enjoyable work.</description>
		<content:encoded><![CDATA[<p>Just want to say your article is as astounding. The clearness in your post is simply cool and i could think you&#8217;re an expert on this subject. Fine along with your permission allow me to take hold of your feed to stay up to date with drawing close post. Thanks 1,000,000 and please carry on the enjoyable work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rules of Using conditional [ ?: ] Operators in C by Phil</title>
		<link>http://www.c4learn.com/2010/02/rules-of-using-conditional-operators-in.html#comment-729</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Sat, 18 Feb 2012 05:42:48 +0000</pubDate>
		<guid isPermaLink="false">http://eshopdetails.com/c/2010/02/rules-of-using-conditional-operators-in-c.html#comment-729</guid>
		<description>Pretty! This was a really wonderful post. Thank you for providing this info.</description>
		<content:encoded><![CDATA[<p>Pretty! This was a really wonderful post. Thank you for providing this info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Header File &gt;&gt; Conio.h &gt;&gt; Functions in C Programming Language by Zen</title>
		<link>http://www.c4learn.com/2010/01/header-file-conioh-functions-in-c.html#comment-681</link>
		<dc:creator>Zen</dc:creator>
		<pubDate>Tue, 14 Feb 2012 18:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://eshopdetails.com/c/2010/01/header-file-conio-h-functions-in-c-programming-language.html#comment-681</guid>
		<description>Fantastic blog! Great!</description>
		<content:encoded><![CDATA[<p>Fantastic blog! Great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One Dimensional Array All Programs by Mani</title>
		<link>http://www.c4learn.com/2012/01/one-dimensional-array-all-programs.html#comment-676</link>
		<dc:creator>Mani</dc:creator>
		<pubDate>Tue, 14 Feb 2012 13:44:55 +0000</pubDate>
		<guid isPermaLink="false">http://eshopdetails.com/c/2009/12/one-dimensional-array-all-programs.html#comment-676</guid>
		<description>Thank you for another essential article. Where else could anyone get that kind of information in such a complete way of writing? I have a presentation incoming week, and I am on the lookout for such information.</description>
		<content:encoded><![CDATA[<p>Thank you for another essential article. Where else could anyone get that kind of information in such a complete way of writing? I have a presentation incoming week, and I am on the lookout for such information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pointer Arithmatics : Decrementing Pointer Variable in C Programming by Alvina</title>
		<link>http://www.c4learn.com/2012/01/pointer-arithmatics-decrementing-pointer-variable-in-c-programming.html#comment-668</link>
		<dc:creator>Alvina</dc:creator>
		<pubDate>Mon, 13 Feb 2012 23:52:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.c4learn.com/?p=2905#comment-668</guid>
		<description>I appreciate a tremendous publish, would examine one&#039;s others topics. thanks for your thinking for this, I really felt somewhat thump by this post. Many thanks again! You earn an excellent aspect. Has fantastic info here. I do think that in case more people thought about it like this, they&#039;d have got a better time period obtain the grasp ofing the issue.</description>
		<content:encoded><![CDATA[<p>I appreciate a tremendous publish, would examine one&#8217;s others topics. thanks for your thinking for this, I really felt somewhat thump by this post. Many thanks again! You earn an excellent aspect. Has fantastic info here. I do think that in case more people thought about it like this, they&#8217;d have got a better time period obtain the grasp ofing the issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Causes of Dangling Pointer in C by BM</title>
		<link>http://www.c4learn.com/2010/06/causes-of-dangling-pointer-in-c.html#comment-666</link>
		<dc:creator>BM</dc:creator>
		<pubDate>Mon, 13 Feb 2012 17:20:27 +0000</pubDate>
		<guid isPermaLink="false">http://eshopdetails.com/c/2010/06/causes-of-dangling-pointer-in-c.html#comment-666</guid>
		<description>You&#039;re quite right with this writing..</description>
		<content:encoded><![CDATA[<p>You&#8217;re quite right with this writing..</p>
]]></content:encoded>
	</item>
</channel>
</rss>

