<?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>Onecore &#187; C++</title>
	<atom:link href="http://www.onecore.net/category/c/feed" rel="self" type="application/rss+xml" />
	<link>http://www.onecore.net</link>
	<description>Developer Network</description>
	<lastBuildDate>Sun, 29 Aug 2010 19:06:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Developing C/C++ programs under ubuntu</title>
		<link>http://www.onecore.net/developing-cc-programs-under-ubuntu.htm</link>
		<comments>http://www.onecore.net/developing-cc-programs-under-ubuntu.htm#comments</comments>
		<pubDate>Thu, 27 Aug 2009 14:40:13 +0000</pubDate>
		<dc:creator>mahesh</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.onecore.net/?p=192</guid>
		<description><![CDATA[I already covered how to write c++ programs in linux. But in that article, i didn’t mentioned about how to install compilers and stuff. So this post will cover how to install compilers in ubuntu and to write, compile and run program. Installing C/C++ compilers Enter this into terminal (Note: you’ll be asked for root [...]]]></description>
		<wfw:commentRss>http://www.onecore.net/developing-cc-programs-under-ubuntu.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Libraries and Namespaces</title>
		<link>http://www.onecore.net/libraries-and-namespaces.htm</link>
		<comments>http://www.onecore.net/libraries-and-namespaces.htm#comments</comments>
		<pubDate>Fri, 29 May 2009 08:37:32 +0000</pubDate>
		<dc:creator>mahesh</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.onecore.net/?p=77</guid>
		<description><![CDATA[C++ comes with a number of standard libraries.Some libraries are commercial &#38; limited to perticular compiler while some are included in every compiler.These libraries place their definitions inside namespace.So we&#8217;ll discuss what namespace is,but before moving onto namespace let&#8217;s clear few things about libraries.  Libraries In C++,you came across so many built-in libraries.You can use [...]]]></description>
		<wfw:commentRss>http://www.onecore.net/libraries-and-namespaces.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Locale</title>
		<link>http://www.onecore.net/locale.htm</link>
		<comments>http://www.onecore.net/locale.htm#comments</comments>
		<pubDate>Wed, 20 May 2009 00:08:20 +0000</pubDate>
		<dc:creator>mahesh</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.onecore.net/?p=183</guid>
		<description><![CDATA[Sometimes the question is asked to students that “What is locale?” during interviews. Let’s talk about it in this post. As per Wikipedia : In computing, locale is a set of parameters that defines the user&#8217;s language, country and any special variant preferences that the user wants to see in their user interface. Usually a [...]]]></description>
		<wfw:commentRss>http://www.onecore.net/locale.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C++: Multiple Source files</title>
		<link>http://www.onecore.net/c-multiple-source-files.htm</link>
		<comments>http://www.onecore.net/c-multiple-source-files.htm#comments</comments>
		<pubDate>Sun, 15 Feb 2009 08:55:29 +0000</pubDate>
		<dc:creator>mahesh</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.onecore.net/?p=74</guid>
		<description><![CDATA[It can be inconvenient to write a long program within a single file. When programs grow to hundreds or thousands of lines, breaking them into modular units helps manage the program.This way you can bring modularity in your project.Both C &#38; C++ allows you to break your program in multiple source files.This article will discuss [...]]]></description>
		<wfw:commentRss>http://www.onecore.net/c-multiple-source-files.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual C++ Express</title>
		<link>http://www.onecore.net/visual-c-express.htm</link>
		<comments>http://www.onecore.net/visual-c-express.htm#comments</comments>
		<pubDate>Sat, 15 Nov 2008 13:49:58 +0000</pubDate>
		<dc:creator>mahesh</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.onecore.net/?p=70</guid>
		<description><![CDATA[Developing C++ programs for windows platform can be fun, provided that you&#8217;re using the right tool. There are plenty of choices available while starting your journey in windows development using C++. The two most worthy tools are Turbo C++ explorer &#38; Microsoft visual C++ express. Turbo C++ explorer is very easy to start, but later [...]]]></description>
		<wfw:commentRss>http://www.onecore.net/visual-c-express.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
