<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Learning Computer Programming</title>
	<atom:link href="http://tgilani.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tgilani.wordpress.com</link>
	<description>Learn Programming - Free Programming Tutorials</description>
	<lastBuildDate>Sun, 01 Jan 2012 08:47:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tgilani.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/01ae8be35748bca31e449cf81cfc2a56?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Learning Computer Programming</title>
		<link>http://tgilani.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tgilani.wordpress.com/osd.xml" title="Learning Computer Programming" />
	<atom:link rel='hub' href='http://tgilani.wordpress.com/?pushpress=hub'/>
		<item>
		<title>2011 in review</title>
		<link>http://tgilani.wordpress.com/2012/01/01/2011-in-review/</link>
		<comments>http://tgilani.wordpress.com/2012/01/01/2011-in-review/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 08:47:14 +0000</pubDate>
		<dc:creator>Ali Turab Gilani</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[annual report]]></category>

		<guid isPermaLink="false">http://tgilani.wordpress.com/?p=225</guid>
		<description><![CDATA[The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog. Here&#8217;s an excerpt: A San Francisco cable car holds 60 people. This blog was viewed about 2,200 times in 2011. If it were a cable car, it would take about 37 trips to carry that many people. Click here to see the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tgilani.wordpress.com&amp;blog=8652439&amp;post=225&amp;subd=tgilani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://tgilani.wordpress.com/2012/01/01/2011-in-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7470740cb2ac4984ed97d71c279ef547?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tGilani</media:title>
		</media:content>
	</item>
		<item>
		<title>A Dive Into Object Oriented Programming</title>
		<link>http://tgilani.wordpress.com/2011/06/14/a-dive-into-object-oriented-programming/</link>
		<comments>http://tgilani.wordpress.com/2011/06/14/a-dive-into-object-oriented-programming/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 12:55:04 +0000</pubDate>
		<dc:creator>Ali Turab Gilani</dc:creator>
				<category><![CDATA[OOP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[object orientation]]></category>
		<category><![CDATA[object oriented programming]]></category>
		<category><![CDATA[oop]]></category>

		<guid isPermaLink="false">http://tgilani.wordpress.com/?p=78</guid>
		<description><![CDATA[A few days back, one of my friends mentioned how 90 % percent of students still program in the old procedural way. And really I was shocked to notice that these stats were remarkably true. It is unfortunate to see that majority of students jump into learning the Languages and their Syntax instead of paying [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tgilani.wordpress.com&amp;blog=8652439&amp;post=78&amp;subd=tgilani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://tgilani.wordpress.com/2011/06/14/a-dive-into-object-oriented-programming/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7470740cb2ac4984ed97d71c279ef547?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tGilani</media:title>
		</media:content>
	</item>
		<item>
		<title>Switch Statement in C++</title>
		<link>http://tgilani.wordpress.com/2010/09/13/switch-statement-in-c/</link>
		<comments>http://tgilani.wordpress.com/2010/09/13/switch-statement-in-c/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 18:35:33 +0000</pubDate>
		<dc:creator>Ali Turab Gilani</dc:creator>
				<category><![CDATA[C++ Tutorials]]></category>
		<category><![CDATA[c++ switch statement]]></category>
		<category><![CDATA[switch statement in c++]]></category>

		<guid isPermaLink="false">http://tgilani.wordpress.com/?p=212</guid>
		<description><![CDATA[Here is the code tutorial for the Switch Statement in C++ #include &#60;iostream&#62; using namespace std; int main() { int monthNumber; cout &#60;&#60; &#8221;Enter month number: &#8220;; cin &#62;&#62; monthNumber; // if-based solution would be: // // if (monthNumber == 1) //          cout &#60;&#60; &#8220;January&#8221;; // else if (monthNumber == 2) //          cout &#60;&#60; &#8220;February&#8221;; // else &#8230; // // it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tgilani.wordpress.com&amp;blog=8652439&amp;post=212&amp;subd=tgilani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://tgilani.wordpress.com/2010/09/13/switch-statement-in-c/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7470740cb2ac4984ed97d71c279ef547?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tGilani</media:title>
		</media:content>
	</item>
		<item>
		<title>Console Input in C++</title>
		<link>http://tgilani.wordpress.com/2010/09/13/console-input-in-c/</link>
		<comments>http://tgilani.wordpress.com/2010/09/13/console-input-in-c/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 18:29:34 +0000</pubDate>
		<dc:creator>Ali Turab Gilani</dc:creator>
				<category><![CDATA[C++ Tutorials]]></category>
		<category><![CDATA[c plus plus console input]]></category>
		<category><![CDATA[c++ console input]]></category>
		<category><![CDATA[console input in c++]]></category>

		<guid isPermaLink="false">http://tgilani.wordpress.com/?p=208</guid>
		<description><![CDATA[The statement used for taking user input from the console is &#8216;cout&#8217; statement. #include &#60;iostream&#62; #include &#60;string&#62; using namespace std; int main() { string name; int age; // prompt user for his/her name cout &#60;&#60; &#8221;Enter your name: &#8220;; // read name cin &#62;&#62; name; // prompt user for his/her age cout &#60;&#60; &#8221;Enter your age: &#8220;; // read age cin &#62;&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tgilani.wordpress.com&amp;blog=8652439&amp;post=208&amp;subd=tgilani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://tgilani.wordpress.com/2010/09/13/console-input-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7470740cb2ac4984ed97d71c279ef547?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tGilani</media:title>
		</media:content>
	</item>
		<item>
		<title>Console Output in C++</title>
		<link>http://tgilani.wordpress.com/2010/09/13/console-output-in-c/</link>
		<comments>http://tgilani.wordpress.com/2010/09/13/console-output-in-c/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 18:12:54 +0000</pubDate>
		<dc:creator>Ali Turab Gilani</dc:creator>
				<category><![CDATA[C++ Tutorials]]></category>
		<category><![CDATA[c output console]]></category>
		<category><![CDATA[C++ Console output]]></category>
		<category><![CDATA[console output in c]]></category>
		<category><![CDATA[output to console in C++]]></category>

		<guid isPermaLink="false">http://tgilani.wordpress.com/?p=203</guid>
		<description><![CDATA[The command used for outputting text to console is the &#8216;cout&#8217; statement. It resides in the iostream.h header file within the std namespace. For now ignore the terms and just get familiar with the program below. Here is a simple program that outputs data to the console. #include &#60;iostream&#62; using namespace std; int main() { // cout is an [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tgilani.wordpress.com&amp;blog=8652439&amp;post=203&amp;subd=tgilani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://tgilani.wordpress.com/2010/09/13/console-output-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7470740cb2ac4984ed97d71c279ef547?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">tGilani</media:title>
		</media:content>
	</item>
	</channel>
</rss>
