<?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>Coder Circle &#187; prgramming in C++</title>
	<atom:link href="http://www.codercircle.com/tag/prgramming_in_c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codercircle.com</link>
	<description>Your Path for Knowledge to Wisdom</description>
	<lastBuildDate>Tue, 04 May 2010 01:26:21 +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>Constructor in C++</title>
		<link>http://www.codercircle.com/programming_languages/constructor_in_c/</link>
		<comments>http://www.codercircle.com/programming_languages/constructor_in_c/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 07:28:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Languages]]></category>
		<category><![CDATA[constructor in C++]]></category>
		<category><![CDATA[prgramming in C++]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/01/25/constructor_in_c/</guid>
		<description><![CDATA[Any class needs to be instantiated. A constructor is a special function created by default, used to automatically initialize an object. A constructor is implicitly called whenever an object is created. A constructor is also used to initialize the data mem
# include&#60;iostream.h&#62;
class add
{
int n1,n2,res;
public:
add()
{
cout&#60;&#60;&#8221;Inside the default constructor&#8221;&#60;&#60;endl;
n1=n2=res=0;
}
void accept()
{
cout&#60;&#60;&#8221;Enter two numbers:&#8221; &#60;&#60;endl;
cin&#62;&#62;n1;
cin&#62;&#62;n2;
}
]]></description>
		<wfw:commentRss>http://www.codercircle.com/programming_languages/constructor_in_c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
