<?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>Systom software website &#187; Uncategorized</title>
	<atom:link href="http://www.systomsoft.com/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://www.systomsoft.com</link>
	<description>little bit of fun for our meaningful life</description>
	<lastBuildDate>Tue, 02 Mar 2010 18:52:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Reverse an array without using a loop???</title>
		<link>http://www.systomsoft.com/uncategorized/125</link>
		<comments>http://www.systomsoft.com/uncategorized/125#comments</comments>
		<pubDate>Tue, 02 Mar 2010 18:49:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.systomsoft.com/?p=125</guid>
		<description><![CDATA[	 Hiring a programmer? Ask these questions in the interview &#124; IT Leadership 	 &#124; TechRepublic.com	 

			Hiring a programmer? Ask these questions in the interview &#124; IT Leadership
			&#124; TechRepublic.com
		
Reverse an array without using a loop
I read the article and tried to make the program.
I am not sure if this is correct. Let me know what [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://blogs.techrepublic.com.com/tech-manager/?p=3023' title='	 Hiring a programmer? Ask these questions in the interview | IT Leadership 	 | TechRepublic.com	 '>	 Hiring a programmer? Ask these questions in the interview | IT Leadership 	 | TechRepublic.com	 </a></p>
<blockquote><div class="quotetitle"><a href='http://blogs.techrepublic.com.com/tech-manager/?p=3023' title='<br />
			Hiring a programmer? Ask these questions in the interview | IT Leadership<br />
			| TechRepublic.com<br />
		'><br />
			Hiring a programmer? Ask these questions in the interview | IT Leadership<br />
			| TechRepublic.com<br />
		</a></div>
<p>Reverse an array without using a loop</p></blockquote>
<p>I read the article and tried to make the program.</p>
<p>I am not sure if this is correct. Let me know what you think.</p>
<p><script type="text/javascript" src="http://blog.livedoor.jp/dankogai/js/sourceviewer.js"></script><br />
<script>//<![CDATA[
var sourceViewer = new SourceViewer();
sourceViewer.boot(sourceViewer, 'sourcecode');
//]]&gt;</script></p>
<style>
.sourcecode { display: none }
</style>
<p><textarea class="sourcecode"><br />
int main(void) {<br />
	int size = 5;<br />
	int myarray[] = {1,2,3,4,5};<br />
	int newarray[size];</p>
<p>	rev(&#038;myarray[0], &#038;newarray[0], size);<br />
}</p>
<p>void rev(int* oldArray, int* newArray, int num)<br />
{<br />
	int* next= oldArray;<br />
	num&#8211;;<br />
	if (num>1)<br />
	{<br />
		next++;<br />
		rev(next, num);<br />
	}</p>
<p>	*newArray = *oldArray;<br />
	newArray++;</p>
<p>}<br />
</textarea></p>
]]></content:encoded>
			<wfw:commentRss>http://www.systomsoft.com/uncategorized/125/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
