<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Namespaces</title>
	<atom:link href="http://www.technicalinterviews.net/namespaces/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.technicalinterviews.net/namespaces/</link>
	<description>This site features a collection of common technical interview questions gathered by a group of programmers who have been through, and given, lots of technical interviews. There is an emphasis on C++ and game programming technical interviews, but most of the questions are relevant to any technical interview.</description>
	<lastBuildDate>Fri, 07 Oct 2011 20:18:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Mayank</title>
		<link>http://www.technicalinterviews.net/namespaces/comment-page-1/#comment-1447</link>
		<dc:creator>Mayank</dc:creator>
		<pubDate>Tue, 28 Aug 2007 11:03:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.technicalinterviews.net/namespaces/#comment-1447</guid>
		<description>Namespace is used to avoid function name clashes between different libraries, it declares all function/variables within a scope which remains hidden otherwise until explictly mentioned which is done by the keywords &#039;using&#039;.

eg.

namespace myfuncs {
void func1();
int func2();

int fg;
}

..
..
..

in some file when you write ... 

... 
using namespace myfuncs;

...</description>
		<content:encoded><![CDATA[<p>Namespace is used to avoid function name clashes between different libraries, it declares all function/variables within a scope which remains hidden otherwise until explictly mentioned which is done by the keywords &#8216;using&#8217;.</p>
<p>eg.</p>
<p>namespace myfuncs {<br />
void func1();<br />
int func2();</p>
<p>int fg;<br />
}</p>
<p>..<br />
..<br />
..</p>
<p>in some file when you write &#8230; </p>
<p>&#8230;<br />
using namespace myfuncs;</p>
<p>&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

