<?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: To check whether the given string is palindrome-method 2</title>
	<atom:link href="http://electrofriends.com/source-codes/software-programs/c/string-programs/to-check-whether-the-given-string-is-palindrome-method-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://electrofriends.com/source-codes/software-programs/c/string-programs/to-check-whether-the-given-string-is-palindrome-method-2/</link>
	<description>...bringing innovative minds together</description>
	<lastBuildDate>Fri, 30 Jul 2010 05:57:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: lopa</title>
		<link>http://electrofriends.com/source-codes/software-programs/c/string-programs/to-check-whether-the-given-string-is-palindrome-method-2/comment-page-1/#comment-2901</link>
		<dc:creator>lopa</dc:creator>
		<pubDate>Sat, 05 Jun 2010 06:17:24 +0000</pubDate>
		<guid isPermaLink="false">http://electrofriends.com/?p=398#comment-2901</guid>
		<description>i couldnt understand ur  9th number line// for(j=0;str[j]!=”;j++);
can u pls explain?</description>
		<content:encoded><![CDATA[<p>i couldnt understand ur  9th number line// for(j=0;str[j]!=”;j++);<br />
can u pls explain?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chetan</title>
		<link>http://electrofriends.com/source-codes/software-programs/c/string-programs/to-check-whether-the-given-string-is-palindrome-method-2/comment-page-1/#comment-1202</link>
		<dc:creator>Chetan</dc:creator>
		<pubDate>Sun, 17 Jan 2010 08:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://electrofriends.com/?p=398#comment-1202</guid>
		<description>THIS THING ALSO WORKS !! EASILY UNDERSTANDABLE !!!

#include
#include
int main()
{
    int i,j,check=0;
    char str[100];
    
    printf(&quot;ENTER A STRING:\n&quot;);
    gets(str);
    for(j=0;str[j]!=&#039;&#039;;j++);
    j=j-1;
    i=0;
    while(i&lt;=j)
    {
               if(str[i]==str[j])
               {
               i=i+1;
               j=j-1;
               check=1;
               }
               else
               {
               check=0;
               break;
               }
               }
               
               
               
               if(check==1)
               printf(&quot;PALINDROME:&quot;);
               else
               printf(&quot;NOT A PALINDROME\n&quot;);
               
               
               
               
               getch();
               
               }</description>
		<content:encoded><![CDATA[<p>THIS THING ALSO WORKS !! EASILY UNDERSTANDABLE !!!</p>
<p>#include<br />
#include<br />
int main()<br />
{<br />
    int i,j,check=0;<br />
    char str[100];</p>
<p>    printf(&#8220;ENTER A STRING:\n&#8221;);<br />
    gets(str);<br />
    for(j=0;str[j]!=&#8221;;j++);<br />
    j=j-1;<br />
    i=0;<br />
    while(i&lt;=j)<br />
    {<br />
               if(str[i]==str[j])<br />
               {<br />
               i=i+1;<br />
               j=j-1;<br />
               check=1;<br />
               }<br />
               else<br />
               {<br />
               check=0;<br />
               break;<br />
               }<br />
               }</p>
<p>               if(check==1)<br />
               printf(&quot;PALINDROME:&quot;);<br />
               else<br />
               printf(&quot;NOT A PALINDROME\n&quot;);</p>
<p>               getch();</p>
<p>               }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bird</title>
		<link>http://electrofriends.com/source-codes/software-programs/c/string-programs/to-check-whether-the-given-string-is-palindrome-method-2/comment-page-1/#comment-833</link>
		<dc:creator>Bird</dc:creator>
		<pubDate>Sat, 10 Oct 2009 07:58:29 +0000</pubDate>
		<guid isPermaLink="false">http://electrofriends.com/?p=398#comment-833</guid>
		<description>It works fine but it is case sensitive. How to solve that?</description>
		<content:encoded><![CDATA[<p>It works fine but it is case sensitive. How to solve that?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
