<?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; Computer Science</title>
	<atom:link href="http://phoxis.org/category/computer-science/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; Computer Science</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>Simple script to restart services automatically when stopped in Fedora/Redhat</title>
		<link>http://phoxis.org/2012/02/23/simple-script-to-restart-services-automatically-when-stopped-in-fedoraredhat/</link>
		<comments>http://phoxis.org/2012/02/23/simple-script-to-restart-services-automatically-when-stopped-in-fedoraredhat/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 11:20:14 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[GNU+Linux+FOSS]]></category>
		<category><![CDATA[Linux / Unix Shell]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1886</guid>
		<description><![CDATA[When occasionally the services like Apache or MySQL or other rc.d script crashes and stops working, then instead of restarting them manually, it may be more desirable to restart them automatically. A friend of mine asked about such an issue &#8230; <a href="http://phoxis.org/2012/02/23/simple-script-to-restart-services-automatically-when-stopped-in-fedoraredhat/">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=1886&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/02/23/simple-script-to-restart-services-automatically-when-stopped-in-fedoraredhat/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>

		<media:content url="http://phoxis.files.wordpress.com/2010/02/logo_fedoralogo-e1266130275560.png" medium="image">
			<media:title type="html">fedora_logo</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>Bash Script: Reading ID3v1 Tags</title>
		<link>http://phoxis.org/2011/08/24/bash-script-reading-id3v1-tags/</link>
		<comments>http://phoxis.org/2011/08/24/bash-script-reading-id3v1-tags/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 10:27:57 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Linux / Unix Shell]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[id3]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1667</guid>
		<description><![CDATA[mp3 files contain track name, artist name, etc meta data about the music file itself. The meta data format used in mp3 files are called the ID3 tags. There are different versions of ID3 tags available. The objective is to &#8230; <a href="http://phoxis.org/2011/08/24/bash-script-reading-id3v1-tags/">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=1667&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2011/08/24/bash-script-reading-id3v1-tags/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>Bash Script: Find occurrence count of a string in a file</title>
		<link>http://phoxis.org/2011/08/24/bash-script-find-occurrence-count-of-a-string-in-a-file/</link>
		<comments>http://phoxis.org/2011/08/24/bash-script-find-occurrence-count-of-a-string-in-a-file/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 09:06:19 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Linux / Unix Shell]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1665</guid>
		<description><![CDATA[A file is given, and a string is given. The number of time the string occurs in the file, and the line number in which the string occurs in the file needs to be found out and printed. The Idea &#8230; <a href="http://phoxis.org/2011/08/24/bash-script-find-occurrence-count-of-a-string-in-a-file/">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=1665&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2011/08/24/bash-script-find-occurrence-count-of-a-string-in-a-file/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>
	</channel>
</rss>
