<?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>Techno Explore &#187; C language</title>
	<atom:link href="http://www.technoexplore.info/tag/c-language/feed" rel="self" type="application/rss+xml" />
	<link>http://www.technoexplore.info</link>
	<description>Exploring the Latest Technologies and Trends</description>
	<lastBuildDate>Thu, 26 Jan 2012 17:00:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Mean, Variance and SD in C</title>
		<link>http://www.technoexplore.info/mean-variance-and-sd-in-c?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mean-variance-and-sd-in-c</link>
		<comments>http://www.technoexplore.info/mean-variance-and-sd-in-c#comments</comments>
		<pubDate>Wed, 06 May 2009 18:52:00 +0000</pubDate>
		<dc:creator>sriramraj</dc:creator>
				<category><![CDATA[C language]]></category>
		<category><![CDATA[C programs]]></category>

		<guid isPermaLink="false">http://technoexplore.info/mean-variance-and-sd-in-c</guid>
		<description><![CDATA[ C Language 

 C Programs 


Related posts:Sum of cosines using c



Related posts:<ol><li><a href='http://www.technoexplore.info/sum-of-cosines-using-c' rel='bookmark' title='Permanent Link: Sum of cosines using c'>Sum of cosines using c</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.technoexplore.info/mean-variance-and-sd-in-c/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sum of cosines using c</title>
		<link>http://www.technoexplore.info/sum-of-cosines-using-c?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sum-of-cosines-using-c</link>
		<comments>http://www.technoexplore.info/sum-of-cosines-using-c#comments</comments>
		<pubDate>Wed, 06 May 2009 18:42:00 +0000</pubDate>
		<dc:creator>sriramraj</dc:creator>
				<category><![CDATA[C language]]></category>
		<category><![CDATA[C programs]]></category>

		<guid isPermaLink="false">http://technoexplore.info/sum-of-cosines-using-c</guid>
		<description><![CDATA[ C Language 

 C Programs 
/* Write a C program to find the sum of cos(x) series */
#include#include

void main(){    int n,x1,i,j;    float x,sign,cosx,fact;
    printf(&#8220;Enter the number of the terms in aseries\n&#8221;);    scanf(&#8220;%d&#8221;,&#038;n);
 printf(&#8220;Enter the value of x(in degrees)\n&#8221;); scanf(&#8220;%f&#8221;,&#038;x);
 x1=x;
 x=x*(3.142/180.0); /* [...]


Related posts:<ol><li><a href='http://www.technoexplore.info/bitwise-operators-usage-in-c' rel='bookmark' title='Permanent Link: Bitwise operators usage in c'>Bitwise operators usage in c</a></li>
<li><a href='http://www.technoexplore.info/binary-to-decimal-conversion-in-c' rel='bookmark' title='Permanent Link: Binary To Decimal Conversion in C'>Binary To Decimal Conversion in C</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.technoexplore.info/sum-of-cosines-using-c/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bitwise operators usage in c</title>
		<link>http://www.technoexplore.info/bitwise-operators-usage-in-c?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bitwise-operators-usage-in-c</link>
		<comments>http://www.technoexplore.info/bitwise-operators-usage-in-c#comments</comments>
		<pubDate>Wed, 06 May 2009 18:41:00 +0000</pubDate>
		<dc:creator>sriramraj</dc:creator>
				<category><![CDATA[Bitwise operators]]></category>
		<category><![CDATA[C language]]></category>
		<category><![CDATA[C programs]]></category>

		<guid isPermaLink="false">http://technoexplore.info/bitwise-operators-usage-in-c</guid>
		<description><![CDATA[ C Language 

 C Programs 
 /*    Write a c program to multifly given number by 4     *  *    using bitwise operators                      [...]


No related posts.]]></description>
		<wfw:commentRss>http://www.technoexplore.info/bitwise-operators-usage-in-c/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Binary To Decimal Conversion in C</title>
		<link>http://www.technoexplore.info/binary-to-decimal-conversion-in-c?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=binary-to-decimal-conversion-in-c</link>
		<comments>http://www.technoexplore.info/binary-to-decimal-conversion-in-c#comments</comments>
		<pubDate>Wed, 06 May 2009 18:35:00 +0000</pubDate>
		<dc:creator>sriramraj</dc:creator>
				<category><![CDATA[C language]]></category>
		<category><![CDATA[C programs]]></category>

		<guid isPermaLink="false">http://technoexplore.info/binary-to-decimal-conversion-in-c</guid>
		<description><![CDATA[ C Language 

 C Programs 

 Binary To Decimal Conversion in C 
/* Write a C program to convert the given binary number into its equivalent decimal */
#include 
void main(){  int   num, bnum, dec = 0, base = 1, rem ;
  printf(&#8220;Enter the binary number(1s and 0s)\n&#8221;);  scanf(&#8220;%d&#8221;, &#038;num); [...]


No related posts.]]></description>
		<wfw:commentRss>http://www.technoexplore.info/binary-to-decimal-conversion-in-c/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

