<?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 1</title>
	<atom:link href="http://electrofriends.com/source-codes/software-programs/c/string-programs/to-check-whether-the-given-string-is-palindrome/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/</link>
	<description>...bringing innovative minds together</description>
	<lastBuildDate>Tue, 22 May 2012 18:24:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Alias32</title>
		<link>http://electrofriends.com/source-codes/software-programs/c/string-programs/to-check-whether-the-given-string-is-palindrome/comment-page-1/#comment-6729</link>
		<dc:creator>Alias32</dc:creator>
		<pubDate>Thu, 26 Jan 2012 19:55:57 +0000</pubDate>
		<guid isPermaLink="false">http://electrofriends.com/?p=395#comment-6729</guid>
		<description>Forgive a little mistake

int palindrome(char *s)
{
char*p=s;
while (*p++ !=”)
;

while ( p-- &gt; s++ )
{

if( *p == *s)
 continue;

else
return 0;

}
return 1;
}</description>
		<content:encoded><![CDATA[<p>Forgive a little mistake</p>
<p>int palindrome(char *s)<br />
{<br />
char*p=s;<br />
while (*p++ !=”)<br />
;</p>
<p>while ( p&#8211; &gt; s++ )<br />
{</p>
<p>if( *p == *s)<br />
 continue;</p>
<p>else<br />
return 0;</p>
<p>}<br />
return 1;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alias32</title>
		<link>http://electrofriends.com/source-codes/software-programs/c/string-programs/to-check-whether-the-given-string-is-palindrome/comment-page-1/#comment-6728</link>
		<dc:creator>Alias32</dc:creator>
		<pubDate>Thu, 26 Jan 2012 19:38:50 +0000</pubDate>
		<guid isPermaLink="false">http://electrofriends.com/?p=395#comment-6728</guid>
		<description>Hey, I would like to share my version of the palindrome function too. Kindly point out any mistakes.

void palindrome(char *s)
{
 char*p=s;
 while (*p++ !=&#039;&#039;)
           ;
 
 while ( p-- &gt; s++ )
 { 
  
  if( *p == *s)
      ;

  else
    {
      printf(&quot;String is not a palindrome&quot;);
      break;
    }
}</description>
		<content:encoded><![CDATA[<p>Hey, I would like to share my version of the palindrome function too. Kindly point out any mistakes.</p>
<p>void palindrome(char *s)<br />
{<br />
 char*p=s;<br />
 while (*p++ !=&#8221;)<br />
           ;</p>
<p> while ( p&#8211; &gt; s++ )<br />
 { </p>
<p>  if( *p == *s)<br />
      ;</p>
<p>  else<br />
    {<br />
      printf(&#8220;String is not a palindrome&#8221;);<br />
      break;<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>

