<?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="https://studentprojects.in/software-development/c-tutorials/c/string/to-check-whether-the-given-string-is-palindrome-method-2/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-check-whether-the-given-string-is-palindrome-method-2/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Wed, 23 Feb 2011 16:35:17 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: SUMI		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-check-whether-the-given-string-is-palindrome-method-2/comment-page-1/#comment-4395</link>

		<dc:creator><![CDATA[SUMI]]></dc:creator>
		<pubDate>Wed, 23 Feb 2011 16:35:17 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=398#comment-4395</guid>

					<description><![CDATA[9TH LINE IS USED FOR CALCULATING THE LENGTH OF THE STRING..]]></description>
			<content:encoded><![CDATA[<p>9TH LINE IS USED FOR CALCULATING THE LENGTH OF THE STRING..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: priya		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-check-whether-the-given-string-is-palindrome-method-2/comment-page-1/#comment-3840</link>

		<dc:creator><![CDATA[priya]]></dc:creator>
		<pubDate>Mon, 24 Jan 2011 13:43:35 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=398#comment-3840</guid>

					<description><![CDATA[last program is working.easy to enderstand]]></description>
			<content:encoded><![CDATA[<p>last program is working.easy to enderstand</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: noel		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-check-whether-the-given-string-is-palindrome-method-2/comment-page-1/#comment-3100</link>

		<dc:creator><![CDATA[noel]]></dc:creator>
		<pubDate>Mon, 02 Aug 2010 17:29:15 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=398#comment-3100</guid>

					<description><![CDATA[i couldn&#039;t understand the following part:
for(j=0;str[j]!=&quot; &quot;;j++)
j=j--;
i=0]]></description>
			<content:encoded><![CDATA[<p>i couldn&#8217;t understand the following part:<br />
for(j=0;str[j]!=&#8221; &#8220;;j++)<br />
j=j&#8211;;<br />
i=0</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: lopa		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/string/to-check-whether-the-given-string-is-palindrome-method-2/comment-page-1/#comment-2901</link>

		<dc:creator><![CDATA[lopa]]></dc:creator>
		<pubDate>Sat, 05 Jun 2010 06:17:24 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=398#comment-2901</guid>

					<description><![CDATA[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>https://studentprojects.in/software-development/c-tutorials/c/string/to-check-whether-the-given-string-is-palindrome-method-2/comment-page-1/#comment-1202</link>

		<dc:creator><![CDATA[Chetan]]></dc:creator>
		<pubDate>Sun, 17 Jan 2010 08:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=398#comment-1202</guid>

					<description><![CDATA[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&#060;=j)
    {
               if(str[i]==str[j])
               {
               i=i+1;
               j=j-1;
               check=1;
               }
               else
               {
               check=0;
               break;
               }
               }
               
               
               
               if(check==1)
               printf(&#034;PALINDROME:&#034;);
               else
               printf(&#034;NOT A PALINDROME\n&#034;);
               
               
               
               
               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>https://studentprojects.in/software-development/c-tutorials/c/string/to-check-whether-the-given-string-is-palindrome-method-2/comment-page-1/#comment-833</link>

		<dc:creator><![CDATA[Bird]]></dc:creator>
		<pubDate>Sat, 10 Oct 2009 07:58:29 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=398#comment-833</guid>

					<description><![CDATA[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>
