<?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>ActiveSPLIT.com &#187; c</title>
	<atom:link href="http://www.activesplit.com/wpt/c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.activesplit.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 10 Dec 2011 23:49:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Eclipse &#8211; Exclude / de-exclude from build</title>
		<link>http://www.activesplit.com/eclipse-exclude-de-exclude-include-from-build/</link>
		<comments>http://www.activesplit.com/eclipse-exclude-de-exclude-include-from-build/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 20:02:33 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[exclude]]></category>
		<category><![CDATA[exclude from build]]></category>
		<category><![CDATA[include]]></category>
		<category><![CDATA[include into build]]></category>
		<category><![CDATA[programing]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=123</guid>
		<description><![CDATA[Sometimes working with Eclipse can be frustrating. I just spent an hour of my life looking how to include back a file into build that was excluded before (exclude from build). To spare you that drama, just go to: Project Preferences -&#62; C/C++ General -&#62; Paths &#38; Symbols -&#62;  Source Location Click on the folder [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/eclipse-exclude-de-exclude-include-from-build/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>C++  static keyword</title>
		<link>http://www.activesplit.com/c-plus-plus-static-keyword/</link>
		<comments>http://www.activesplit.com/c-plus-plus-static-keyword/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 23:10:36 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[internal linkage]]></category>
		<category><![CDATA[linkage]]></category>
		<category><![CDATA[static]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=97</guid>
		<description><![CDATA[The static keyword can be used in the following situations. When you declare a variable or function at file scope (global and/or namespace scope), the static keyword specifies that the variable or function has internal linkage. When you declare a variable, the variable has static duration and the compiler initializes it to 0 unless you [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/c-plus-plus-static-keyword/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C++ Generate random numbers in Range</title>
		<link>http://www.activesplit.com/c-generate-random-numbers-in-range/</link>
		<comments>http://www.activesplit.com/c-generate-random-numbers-in-range/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 15:06:49 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[max]]></category>
		<category><![CDATA[min]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[random number]]></category>
		<category><![CDATA[random number generator]]></category>
		<category><![CDATA[range]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=94</guid>
		<description><![CDATA[To make use of the rand() command you must include the cstdlib library #include &#60;cstdlib&#62; Before we generate a random number we call the srand(int) function to seed the randomizer so we dont get the same random number each time. #include &#60;ctime&#62; srand(time(NULL)); // time(NULL) returns seconds since 1.1.1970 To get the random number in [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/c-generate-random-numbers-in-range/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse square bracket [] problem</title>
		<link>http://www.activesplit.com/eclipse-square-bracket-problem/</link>
		<comments>http://www.activesplit.com/eclipse-square-bracket-problem/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 16:04:02 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[eclipse problem]]></category>
		<category><![CDATA[eclipse square bracket problem]]></category>
		<category><![CDATA[square bracket]]></category>
		<category><![CDATA[[]]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=88</guid>
		<description><![CDATA[Some people will experience a problem with Eclipse when trying to close the square brackets []. Eclipse will complain about not beeing able to evaluate a text selection and it won&#8217;t allow you typing that closing bracket. I got frustrated a bit because of not knowing whats going on. It wasn&#8217;t possible to write simple [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/eclipse-square-bracket-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

