<?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>TECHiE TALKS &#187; Add new tag</title>
	<atom:link href="http://www.icpep.org/tag/add-new-tag/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.icpep.org</link>
	<description>Just another techie stuff</description>
	<lastBuildDate>Fri, 23 Jul 2010 04:53:01 +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>Hello World in C++</title>
		<link>http://www.icpep.org/hello-world-in-c/</link>
		<comments>http://www.icpep.org/hello-world-in-c/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 00:44:13 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Add new tag]]></category>

		<guid isPermaLink="false">http://icpep.org/?p=64</guid>
		<description><![CDATA[#include // I/O library using namespace std; int main() { cout &#60;&#60; &#8220;Hello, world!&#8221; &#60;&#60; endl; } The // symbol is used as a rest-of-line comment symbol. Also, the program text can be placed in any position on the page, with white space between tokens being ignored. White space are characters such as blanks, tabs, [...]]]></description>
			<content:encoded><![CDATA[<div><script type="text/javascript"><!--
google_ad_client = "pub-4547412119801593";
/* trojan remover */
google_ad_slot = "2402475287";
google_ad_width = 250;
google_ad_height = 250;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></div>
<p style="text-align: center;"><a href="http://icpep.org/wp-content/uploads/cplusplus.jpg"><img class="aligncenter size-medium wp-image-65" title="cplusplus" src="http://icpep.org/wp-content/uploads/cplusplus-300x299.jpg" alt="" width="300" height="299" /></a></p>
<p style="text-align: justify; padding-left: 30px;">#include  // I/O library<br />
using namespace std;<br />
int main()<br />
{<br />
cout &lt;&lt; &#8220;Hello, world!&#8221; &lt;&lt; endl;<br />
}</p>
<p style="text-align: justify;">The // symbol is used as a rest-of-line comment symbol. Also, the program text can be placed in any position on the page, with white space between tokens being ignored. White space are characters such as blanks, tabs, and new lines. White space, comments, and indentation of text are all used to create a well-documented, readable program but do not affect program semantics.</p>
<p style="text-align: justify; padding-left: 30px;">#include &lt;iostream&gt; // I/O library</p>
<p style="text-align: justify;">The C++ program is compiled after the preprocessor executes #-designated directives. The preprocessor precedes the compiler translation of the resulting program into machine code. The #include directive found in the example program hello.cpp imports any needed files, usually library definitions. In this case, the I/O library for a typical C++ compiler system is found in the file iostream. The compiler knows where to find this and other system files.</p>
<p style="text-align: justify; padding-left: 30px;">Using namespace std;</p>
<p style="text-align: justify;">On C++ systems, standard C++ I/O header files are wrapped in namespace std. The using declaration allows names to be used without std:: prepended to each name. The include files could have been coded without namespace and using, as follows:</p>
<p style="text-align: justify; padding-left: 30px;">#include &lt;iostream.h&gt; // I/O library</p>
<p style="text-align: justify;">Most systems provide older style library_name.h header files. These libraries do not require the using namespace std; statement.</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="allajosephcagadas@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Can You Buy Me a Beer? for Hello World in C++" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.icpep.org/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="Buy Me a Beer" title="Buy Me a Beer" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=allajosephcagadas@gmail.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Can+You+Buy+Me+a+Beer?+for+Hello+World+in+C++" target="paypal">Did find the post very useful? Maybe you want to buy me a glass of beer!</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/hello-world-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
