<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ForDevs &#187; C</title>
	<atom:link href="http://www.fordevs.com/category/programming/c-lang/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fordevs.com</link>
	<description>We Learn We Share</description>
	<lastBuildDate>Fri, 25 Nov 2011 18:55:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Swapping a Number</title>
		<link>http://www.fordevs.com/2008/11/swapping-number.html</link>
		<comments>http://www.fordevs.com/2008/11/swapping-number.html#comments</comments>
		<pubDate>Sun, 23 Nov 2008 13:43:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/11/swapping-a-number.html</guid>
		<description><![CDATA[SWAPPING WITHOUT TEMP: #include &#60;stdio.h&#62;; &#160; void main&#40;&#41; &#123; int a=20,b=30; a=a+b; b=a-b; a=a-b; printf&#40;&#34;a=%d&#34;,a&#41;; printf&#40;&#34;b=%d&#34;,b&#41;; &#125; SWAPPIG WITH TEMP: #include &#60;stdio.h&#62;; void main&#40;&#41; &#123; int a=20,b=30,temp; temp=a; a=b; b=temp; printf&#40;&#34;a=%d&#34;,a&#41;; printf&#40;&#34;b=%d&#34;,b&#41;; &#125; Subscribe to the comments for this post? Tweet This! Share this on del.icio.us Digg this! Add this to DZone Share this on [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/11/swapping-number.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Palindrome For String And Numbers</title>
		<link>http://www.fordevs.com/2008/11/palindrome-for-string-and-numbers.html</link>
		<comments>http://www.fordevs.com/2008/11/palindrome-for-string-and-numbers.html#comments</comments>
		<pubDate>Sun, 23 Nov 2008 13:29:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/11/palindrome-for-string-and-numbers.html</guid>
		<description><![CDATA[Palindrome Checking Using C: #include &#60;stdio.h&#62; #include &#60;conio.h&#62; #include &#60;string.h&#62; #define size 26 &#160; void main&#40;&#41; &#123; char strsrc&#91;size&#93;; char strtmp&#91;size&#93;; printf&#40;&#34;\n Enter String:= &#34;&#41;; gets&#40;strsrc&#41;; strcpy&#40;strtmp,strsrc&#41;; strrev&#40;strtmp&#41;; if&#40;strcmp&#40;strsrc,strtmp&#41;==0&#41; printf&#40;&#34;\n Entered string \&#34;%s\&#34; ispalindrome&#34;,strsrc&#41;; else printf&#40;&#34;\n Entered string \&#34;%s\&#34; is not palindrome&#34;,strsrc&#41;; getch&#40;&#41;; &#125; Subscribe to the comments for this post? Tweet This! Share this [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/11/palindrome-for-string-and-numbers.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

