<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Phoxis &#187; C program</title>
	<atom:link href="http://phoxis.org/tag/c-program/feed/" rel="self" type="application/rss+xml" />
	<link>http://phoxis.org</link>
	<description>Don&#039;t just think ... Do it.</description>
	<lastBuildDate>Wed, 16 May 2012 08:32:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='phoxis.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/bd09f76ed73ca3d061c79185b60cbc84?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Phoxis &#187; C program</title>
		<link>http://phoxis.org</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://phoxis.org/osd.xml" title="Phoxis" />
	<atom:link rel='hub' href='http://phoxis.org/?pushpress=hub'/>
		<item>
		<title>Number of trailing zeros in factorial of an integer</title>
		<link>http://phoxis.org/2012/05/11/number-of-trailing-zeros-in-factorial-of-an-integer/</link>
		<comments>http://phoxis.org/2012/05/11/number-of-trailing-zeros-in-factorial-of-an-integer/#comments</comments>
		<pubDate>Fri, 11 May 2012 16:15:04 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Coding Discussions]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[C program]]></category>
		<category><![CDATA[counting]]></category>
		<category><![CDATA[numerical]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=2003</guid>
		<description><![CDATA[An integer n is given, the task is to find the number of trailing zeros in n! . Solution First we need to see what produces trailing zeros. We assume that the integers are represented in base 10. A pair &#8230; <a href="http://phoxis.org/2012/05/11/number-of-trailing-zeros-in-factorial-of-an-integer/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=2003&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/05/11/number-of-trailing-zeros-in-factorial-of-an-integer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Find Sum (i &#8230; j) in a list</title>
		<link>http://phoxis.org/2012/05/04/sum-i-j-in-a-list/</link>
		<comments>http://phoxis.org/2012/05/04/sum-i-j-in-a-list/#comments</comments>
		<pubDate>Fri, 04 May 2012 16:40:46 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Coding Discussions]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[C program]]></category>
		<category><![CDATA[counting]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1989</guid>
		<description><![CDATA[The problem is to sum the ith to jth element of a given list. The easiest solution runs in time, which starts are the ith index and adds up the numbers in the list until it reaches the jth index. &#8230; <a href="http://phoxis.org/2012/05/04/sum-i-j-in-a-list/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1989&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/05/04/sum-i-j-in-a-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Find a String in an Alphabet Grid</title>
		<link>http://phoxis.org/2012/05/04/find-a-string-in-an-alphabet-grid/</link>
		<comments>http://phoxis.org/2012/05/04/find-a-string-in-an-alphabet-grid/#comments</comments>
		<pubDate>Thu, 03 May 2012 18:41:32 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Coding Discussions]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[C program]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1982</guid>
		<description><![CDATA[Everybody of us has definitely played the word search game in which a grid of characters are given, and a list of words are given which are to be found in the grid horizontally, vertically or diagonally. In this post &#8230; <a href="http://phoxis.org/2012/05/04/find-a-string-in-an-alphabet-grid/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1982&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/05/04/find-a-string-in-an-alphabet-grid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Towers of Hanoi Iterative process: simulating recursion</title>
		<link>http://phoxis.org/2012/05/01/towers-of-hanoi-iterative-process-simulating-recursion/</link>
		<comments>http://phoxis.org/2012/05/01/towers-of-hanoi-iterative-process-simulating-recursion/#comments</comments>
		<pubDate>Tue, 01 May 2012 18:04:26 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Coding Discussions]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[C program]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1973</guid>
		<description><![CDATA[The last post Recursive Solution to Towers of Hanoi described the well-known recursive definition and implementation of the Towers of Hanoi problem. This post is an extension presenting the same problem iteratively by simulating the recursion stack. This implementation will &#8230; <a href="http://phoxis.org/2012/05/01/towers-of-hanoi-iterative-process-simulating-recursion/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1973&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/05/01/towers-of-hanoi-iterative-process-simulating-recursion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Recursive Solution to Towers of Hanoi</title>
		<link>http://phoxis.org/2012/03/22/towers_of_hanoi_r/</link>
		<comments>http://phoxis.org/2012/03/22/towers_of_hanoi_r/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 18:11:41 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Coding Discussions]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[C program]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1945</guid>
		<description><![CDATA[Towers of Hanoi is a mathematical game or a puzzle in which there are three pegs, and some disks (originally 8) of different radius placed on top of one another such that no larger disk is placed on a smaller &#8230; <a href="http://phoxis.org/2012/03/22/towers_of_hanoi_r/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1945&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/03/22/towers_of_hanoi_r/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Using scanf safely</title>
		<link>http://phoxis.org/2012/03/11/using-scanf-safely/</link>
		<comments>http://phoxis.org/2012/03/11/using-scanf-safely/#comments</comments>
		<pubDate>Sun, 11 Mar 2012 13:39:40 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[C Language]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[C program]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1939</guid>
		<description><![CDATA[Beginners find that the scanf function behaves strangely when you input a character when scanf expects an integer or float. When used inside a loop (taking options), it loops infinitely. Here is a short post which explains what it happens, &#8230; <a href="http://phoxis.org/2012/03/11/using-scanf-safely/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1939&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/03/11/using-scanf-safely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Accessing private data members directly outside from its class in C++</title>
		<link>http://phoxis.org/2012/01/25/accessing-private-data-members-directly-outside-from-its-class-in-c/</link>
		<comments>http://phoxis.org/2012/01/25/accessing-private-data-members-directly-outside-from-its-class-in-c/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 15:56:56 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[C Language]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[C program]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1815</guid>
		<description><![CDATA[Private members in C++ cannot be accessed from outside the class directly. In this post I will tell an interesting fact, that in C++ however there are means with which you can access/modify the values of the private members of &#8230; <a href="http://phoxis.org/2012/01/25/accessing-private-data-members-directly-outside-from-its-class-in-c/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1815&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/01/25/accessing-private-data-members-directly-outside-from-its-class-in-c/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Input Strings with Blankspaces</title>
		<link>http://phoxis.org/2011/08/14/input-strings-with-blankspaces/</link>
		<comments>http://phoxis.org/2011/08/14/input-strings-with-blankspaces/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 12:24:48 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[C Language]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[C program]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1649</guid>
		<description><![CDATA[In CLI programs getting input from the standard input is very important. Often we need to input strings from the user. Strings are delimited by newline, blankspace character and other characters as per the user interpretation. I am discussing on &#8230; <a href="http://phoxis.org/2011/08/14/input-strings-with-blankspaces/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1649&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2011/08/14/input-strings-with-blankspaces/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Allocating multidimentional array at runtime in C</title>
		<link>http://phoxis.org/2011/07/13/allocating-multidimentional-array-at-runtime-in-c/</link>
		<comments>http://phoxis.org/2011/07/13/allocating-multidimentional-array-at-runtime-in-c/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 09:21:35 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Coding Discussions]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[C Language]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[C program]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1627</guid>
		<description><![CDATA[Arrays in C language are static in nature, and cannot be resized at runtime. The effect of runtime allocation of an array could be achieved by hierarchically allocating blocks of memory at runtime. Below we discuss the mechanism to allocate &#8230; <a href="http://phoxis.org/2011/07/13/allocating-multidimentional-array-at-runtime-in-c/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1627&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2011/07/13/allocating-multidimentional-array-at-runtime-in-c/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>C Language Constructors and Destructors with GCC</title>
		<link>http://phoxis.org/2011/04/27/c-language-constructors-and-destructors-with-gcc/</link>
		<comments>http://phoxis.org/2011/04/27/c-language-constructors-and-destructors-with-gcc/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 08:42:45 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[C Language]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[C program]]></category>
		<category><![CDATA[gcc]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1604</guid>
		<description><![CDATA[Constructors and Destructors are special functions. These are one of the features provided by an Object Oriented Programming language. Constructors and Destructors are defined inside an object class. When an object is instantiated, ie. defined of or dynamically allocated of &#8230; <a href="http://phoxis.org/2011/04/27/c-language-constructors-and-destructors-with-gcc/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1604&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2011/04/27/c-language-constructors-and-destructors-with-gcc/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
	</channel>
</rss>
