<?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>Wed, 16 Feb 2011 08:47:52 +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>New Version of Zero4Racer Released</title>
		<link>http://www.systomsoft.com/uncategorized/129</link>
		<comments>http://www.systomsoft.com/uncategorized/129#comments</comments>
		<pubDate>Wed, 16 Feb 2011 08:47:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.systomsoft.com/?p=129</guid>
		<description><![CDATA[New Version of Zero4Racer Released. Check it out!.

Zero4Racer Pro (FREE)
iPhone 3GS、iPhone 4、iPod touch（2G）、iPod touch（3G） or iPod touch (4th generation) and iOS 4.2 required
Zero4Racer Pro 2.0.0（FREE）
Category: Game-Racing
Price: FREE 
更新: 2011/02/10


Also I started new Blog.
Zero4Racer PRO Developer&apos;s Blog &#124; Just another WordPress site
]]></description>
			<content:encoded><![CDATA[<p>New Version of Zero4Racer Released. Check it out!.</p>
<div class="AppInfo">
<h2><span style="color: #0000ff;">Zero4Racer Pro (FREE)</span></h2>
<p>iPhone 3GS、iPhone 4、iPod touch（2G）、iPod touch（3G） or iPod touch (4th generation) and iOS 4.2 required<br />
<img class="alignleft" src="http://a6.phobos.apple.com/us/r1000/042/Purple/57/20/50/mzi.evyfewtp.175x175-75.jpg" alt="" width="75" align="left" /><strong>Zero4Racer Pro 2.0.0（FREE）</strong><br />
Category: Game-Racing<br />
Price: FREE <a rel="nofollow" href="http://itunes.apple.com/jp/app/id410062906?mt=8" target="_blank"><img src="http://ax.phobos.apple.com.edgesuite.net/images/web/linkmaker/badge_appstore-sm.gif" alt="App" /></a><br />
更新: 2011/02/10<br style="clear: both;" /><br />
<img class="landscape" src="http://a1.phobos.apple.com/us/r1000/009/Purple/e9/43/a7/mzl.rruunzyw.320x480-75.jpg" alt="iPhone" width="288" /><img class="landscape" src="http://a8.phobos.apple.com/us/r1000/054/Purple/47/cd/d4/mzl.qyrxlbma.320x480-75.jpg" alt="iPhone" width="288" />
</div>
<p>Also I started new Blog.<br />
<a href="http://www.zero4racer.com/blog/">Zero4Racer PRO Developer&apos;s Blog | Just another WordPress site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.systomsoft.com/uncategorized/129/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>

