<?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 The Code Cracker</title>
	<atom:link href="http://thecodecracker.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://thecodecracker.com</link>
	<description>Programming basics</description>
	<lastBuildDate>Wed, 02 May 2012 06:49:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Dining Philosophers Problem by awana</title>
		<link>http://thecodecracker.com/c-programming/dining-philosophers-problem/comment-page-1/#comment-1817</link>
		<dc:creator>awana</dc:creator>
		<pubDate>Wed, 02 May 2012 06:49:52 +0000</pubDate>
		<guid isPermaLink="false">http://thecodecracker.com/?p=1216#comment-1817</guid>
		<description>Thanks a lot, great code!</description>
		<content:encoded><![CDATA[<p>Thanks a lot, great code!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Open Hashing Modular Technique by deepikareddy</title>
		<link>http://thecodecracker.com/c-programming/open-hashing-modular-technique/comment-page-1/#comment-1814</link>
		<dc:creator>deepikareddy</dc:creator>
		<pubDate>Fri, 27 Apr 2012 07:02:20 +0000</pubDate>
		<guid isPermaLink="false">http://thecodecracker.com/?p=34#comment-1814</guid>
		<description>very bad</description>
		<content:encoded><![CDATA[<p>very bad</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Change Case in C by Bihan</title>
		<link>http://thecodecracker.com/c-programming/change-case-in-c/comment-page-1/#comment-1810</link>
		<dc:creator>Bihan</dc:creator>
		<pubDate>Sat, 07 Apr 2012 07:29:59 +0000</pubDate>
		<guid isPermaLink="false">http://thecodecracker.com/?p=40#comment-1810</guid>
		<description>#include
#include
#include

main(){
       char a[100];
       int l,i,t[100];
       printf(&quot;Enter the string: &quot;);
       scanf(&quot;%[^\n]&quot; ,&amp;a);/*READING STRING FROM KEYBOARD*/
       l= strlen(a);
       for (i=0;i96 &amp;&amp; t[i]64 &amp;&amp; t[i]&lt;91)
                                    t[i]= t[i]+32;
               
               }
printf(&quot;The word in changed case: &quot;);

for (i=0;i&lt;=l;i++)/*Printing the word*/
                  {
                      a[i] = t[i];
                      printf(&quot;%c&quot; ,a[i]);
                      }

getch();

}</description>
		<content:encoded><![CDATA[<p>#include<br />
#include<br />
#include</p>
<p>main(){<br />
       char a[100];<br />
       int l,i,t[100];<br />
       printf(&#8220;Enter the string: &#8220;);<br />
       scanf(&#8220;%[^\n]&#8221; ,&amp;a);/*READING STRING FROM KEYBOARD*/<br />
       l= strlen(a);<br />
       for (i=0;i96 &amp;&amp; t[i]64 &amp;&amp; t[i]&lt;91)<br />
                                    t[i]= t[i]+32;</p>
<p>               }<br />
printf(&quot;The word in changed case: &quot;);</p>
<p>for (i=0;i&lt;=l;i++)/*Printing the word*/<br />
                  {<br />
                      a[i] = t[i];<br />
                      printf(&quot;%c&quot; ,a[i]);<br />
                      }</p>
<p>getch();</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Program to find HCF and LCM by shravanskie</title>
		<link>http://thecodecracker.com/c-programming/program-to-find-hcf-and-lcm/comment-page-1/#comment-1809</link>
		<dc:creator>shravanskie</dc:creator>
		<pubDate>Thu, 05 Apr 2012 11:32:53 +0000</pubDate>
		<guid isPermaLink="false">http://thecodecracker.com/?p=24#comment-1809</guid>
		<description>thanks a lottttttt .....</description>
		<content:encoded><![CDATA[<p>thanks a lottttttt &#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Program to find HCF and LCM by shravanskie</title>
		<link>http://thecodecracker.com/c-programming/program-to-find-hcf-and-lcm/comment-page-1/#comment-1808</link>
		<dc:creator>shravanskie</dc:creator>
		<pubDate>Thu, 05 Apr 2012 11:31:53 +0000</pubDate>
		<guid isPermaLink="false">http://thecodecracker.com/?p=24#comment-1808</guid>
		<description>thnks a lot guys :p...........</description>
		<content:encoded><![CDATA[<p>thnks a lot guys :p&#8230;&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BFS and DFS by amit</title>
		<link>http://thecodecracker.com/c-programming/bfs-and-dfs/comment-page-1/#comment-1807</link>
		<dc:creator>amit</dc:creator>
		<pubDate>Mon, 02 Apr 2012 03:38:31 +0000</pubDate>
		<guid isPermaLink="false">http://thecodecracker.com/?p=28#comment-1807</guid>
		<description>it is really very tough to read this code. please improve your skills. use better variable names and please write explanatory comments.</description>
		<content:encoded><![CDATA[<p>it is really very tough to read this code. please improve your skills. use better variable names and please write explanatory comments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Matrix Inverse Code as Module using Pointers by fienefie</title>
		<link>http://thecodecracker.com/c-programming/matrix-inverse-code-as-module-using-pointers/comment-page-1/#comment-1806</link>
		<dc:creator>fienefie</dc:creator>
		<pubDate>Fri, 30 Mar 2012 05:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://thecodecracker.com/?p=977#comment-1806</guid>
		<description>where is the InvMat.h?</description>
		<content:encoded><![CDATA[<p>where is the InvMat.h?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C Program for Circular Linked List by GURU</title>
		<link>http://thecodecracker.com/c-programming/circular-linked-list/comment-page-1/#comment-1805</link>
		<dc:creator>GURU</dc:creator>
		<pubDate>Wed, 28 Mar 2012 13:01:37 +0000</pubDate>
		<guid isPermaLink="false">http://thecodecracker.com/?p=1133#comment-1805</guid>
		<description>god program but to display list, usless using while we can also use do..while....coz it will save one line of code n will also print contain of list is there is only one node in list....</description>
		<content:encoded><![CDATA[<p>god program but to display list, usless using while we can also use do..while&#8230;.coz it will save one line of code n will also print contain of list is there is only one node in list&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on traversing a graph through BFS and DFS by GURU</title>
		<link>http://thecodecracker.com/c-programming/traversing-a-graph-through-bfs-and-dfs/comment-page-1/#comment-1804</link>
		<dc:creator>GURU</dc:creator>
		<pubDate>Wed, 28 Mar 2012 12:55:02 +0000</pubDate>
		<guid isPermaLink="false">http://thecodecracker.com/?p=111#comment-1804</guid>
		<description>buddy the code fails when i m using following graph :
total nodes : 7
node pairs: 
1,3
1,5
1,8
3,6
5,6
8,9
6,7
9,7

although its a valid graph.....i hav asignment of this graph...
will u help me?????</description>
		<content:encoded><![CDATA[<p>buddy the code fails when i m using following graph :<br />
total nodes : 7<br />
node pairs:<br />
1,3<br />
1,5<br />
1,8<br />
3,6<br />
5,6<br />
8,9<br />
6,7<br />
9,7</p>
<p>although its a valid graph&#8230;..i hav asignment of this graph&#8230;<br />
will u help me?????</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dining Philosophers Problem by madhav</title>
		<link>http://thecodecracker.com/c-programming/dining-philosophers-problem/comment-page-1/#comment-1802</link>
		<dc:creator>madhav</dc:creator>
		<pubDate>Wed, 28 Mar 2012 07:54:34 +0000</pubDate>
		<guid isPermaLink="false">http://thecodecracker.com/?p=1216#comment-1802</guid>
		<description>Where can i get the Algorithm for this programs</description>
		<content:encoded><![CDATA[<p>Where can i get the Algorithm for this programs</p>
]]></content:encoded>
	</item>
</channel>
</rss>

