<?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>Vikas Yadav Visual C++ Trainer</title>
	<atom:link href="http://vikasyadav.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vikasyadav.wordpress.com</link>
	<description>Ekam - A smart way to put next step...</description>
	<lastBuildDate>Mon, 14 Sep 2009 08:18:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vikasyadav.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Vikas Yadav Visual C++ Trainer</title>
		<link>http://vikasyadav.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vikasyadav.wordpress.com/osd.xml" title="Vikas Yadav Visual C++ Trainer" />
	<atom:link rel='hub' href='http://vikasyadav.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Some common rules for writing C program</title>
		<link>http://vikasyadav.wordpress.com/2009/09/12/c-language-history/</link>
		<comments>http://vikasyadav.wordpress.com/2009/09/12/c-language-history/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 10:44:31 +0000</pubDate>
		<dc:creator>JEFFREY MOORE</dc:creator>
				<category><![CDATA[C Language]]></category>
		<category><![CDATA[C Language History]]></category>
		<category><![CDATA[C Programs Skeleton]]></category>
		<category><![CDATA[Integrated Development Environment]]></category>
		<category><![CDATA[Turbo c features]]></category>

		<guid isPermaLink="false">http://vikasyadav.wordpress.com/?p=13</guid>
		<description><![CDATA[Remember Some common rules for writing C program Use all commands or statements in lower or small case. After completion of a statement excluding main() or loops must insert ; (semicolon) as a statement terminator. Don’t use/declare identifier or variable name same as statement name suppose int include; this is a wrong statement because include [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vikasyadav.wordpress.com&amp;blog=3291303&amp;post=13&amp;subd=vikasyadav&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Remember Some common rules for writing C program</strong></p>
<ul>
<li>	Use all commands or statements in lower or small case. </li>
<li>After completion of a statement excluding main() or loops must insert ; (semicolon) as a statement terminator. </li>
<li>Don’t use/declare identifier or variable name same as statement name suppose int include; this is a wrong statement because include has a special meaning in the language. </li>
<li>  Header Files or Preprocessor Directives contains references or links of library functions. That is built-in in the C language. </li>
</ul>
<p>Suppose if you want to use a function clrscr() ; in the main function so must be declared on top # include  other wise you could have an prototype error.</p>
<p><strong>Some header files are as follows</strong></p>
<ul>
<li>Stdio.h </li>
<li>Conio.h</li>
<li>Dos.h</li>
<li>String.h</li>
<li>Stdlib.h</li>
</ul>
<p>And many more header files are available in C…</p>
<p><strong>void main(void) </strong><br />
Every C programs consists of one or more functions. No matter how many<br />
functions there are in a C program , main is the one to which control is passed<br />
from the operating system when the program is run ; it is the first function<br />
executed. The word &#8220;void&#8221; preceding &#8220;main&#8221; specifies that the function main()<br />
will not return a value. The second &#8220;void,&#8221; in parenthesis , specifies that the<br />
function takes no arguments.<br />
printf()<br />
printf() is built-in function we can display with printf() any message, variable<br />
value on screen/file/printer.<br />
In printf() we can use many escape sequences and format specifies.</p>
<p><strong>Escape sequences are special notations through which we can display our data<br />
Variety of ways:</strong></p>
<p><strong>Some escape sequences and their functions are as follows:</strong><br />
<strong>Escape Sequence</strong>&nbsp;&nbsp;&nbsp; 	<strong>Description</strong> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;	<strong>Example</strong></p>
<p>\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Perform line feed &amp; Carriage return operation&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;	printf(&#8220;A\nB&#8221;);</p>
<p>\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Prints a tab sequence on screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;	printf (&#8220;A\tb&#8221;);</p>
<p>\’&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;	Prints a single quote character on screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printf (&#8220;\’a\’&#8221;);</p>
<p>\&#8221;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   Prints a double quote character on Screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;	printf (&#8220;\&#8221;a\&#8221;");</p>
<p>\r&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;	Perform carriage return operation&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 	printf (&#8220;a\rb&#8221;)</p>
<p>\b&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;	Remove one character from left&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;	printf (&#8220;a\bHi!&#8221; );</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vikasyadav.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vikasyadav.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vikasyadav.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vikasyadav.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vikasyadav.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vikasyadav.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vikasyadav.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vikasyadav.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vikasyadav.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vikasyadav.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vikasyadav.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vikasyadav.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vikasyadav.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vikasyadav.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vikasyadav.wordpress.com&amp;blog=3291303&amp;post=13&amp;subd=vikasyadav&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vikasyadav.wordpress.com/2009/09/12/c-language-history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f04bd443494c3d76f07c999c41aed741?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jeff</media:title>
		</media:content>
	</item>
		<item>
		<title>C-LANGUAGE NOTES</title>
		<link>http://vikasyadav.wordpress.com/2009/09/12/c-language-notes/</link>
		<comments>http://vikasyadav.wordpress.com/2009/09/12/c-language-notes/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 07:48:12 +0000</pubDate>
		<dc:creator>JEFFREY MOORE</dc:creator>
				<category><![CDATA[C Language]]></category>
		<category><![CDATA[c language tutorial]]></category>
		<category><![CDATA[C Notes]]></category>
		<category><![CDATA[c programing]]></category>
		<category><![CDATA[c tutorial]]></category>
		<category><![CDATA[C-LANGUAGE NOTES]]></category>

		<guid isPermaLink="false">http://vikasyadav.wordpress.com/2009/09/12/c-language-notes/</guid>
		<description><![CDATA[Some words about Computer Programming languages Naturally a language is the source of communication between two persons, and also between person to machine like computer. The languages we can use to communicate with the computer are known as Computer programming languages. Generally there are two major types of languages are available are as follows: 1. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vikasyadav.wordpress.com&amp;blog=3291303&amp;post=8&amp;subd=vikasyadav&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Some words about Computer Programming languages</p>
<p>Naturally a language is the source of communication between two persons, and also between person to machine like computer. The languages we can use to communicate with the computer are known as Computer programming languages. </p>
<p>Generally there are two major types of languages are available are as follows:</p>
<p>1.	Low level languages</p>
<p>2.	The set of commands available in low level is complex and not easy to understandable. In this category &#8221; Assembly &#8221; and &#8221; machine codes &#8221; are available. Assembly programs are faster than other high-level language programs.</p>
<p>3.	High level languages</p>
<p>•  The set of commands available in high level language is very simple and easy to understandable.</p>
</p>
<p><b>High level languages are further divided into two major categories.</b></p>
<p>1.	Procedure Oriented language</p>
<p>2.	In this category we are able to create our project or programs using procedural approach means in this type we can able to divide our big project/program into small subroutines or procedures. After making procedures we can able to call a ‘procedure’ one or more places.</p>
</p>
<p><b>The lists of procedural languages are as follows:</b></p>
<p>C language</p>
<p>C++ (Object Oriented)</p>
<p>Java (Objected Oriented)</p>
<p>Smalltalk (Objected Oriented)</p>
<p>Pascal language</p>
</p>
<p>3.	Non-Procedural Languages: This category also known as ‘Problem Oriented languages’. In this type of languages we can able to make program only at specific range like database. The followings are the examples of Non procedural languages</p>
<p>1.	SQL (Structured Query Language)</p>
<p>2.	SNOBOL (String processor) </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vikasyadav.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vikasyadav.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vikasyadav.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vikasyadav.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vikasyadav.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vikasyadav.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vikasyadav.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vikasyadav.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vikasyadav.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vikasyadav.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vikasyadav.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vikasyadav.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vikasyadav.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vikasyadav.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vikasyadav.wordpress.com&amp;blog=3291303&amp;post=8&amp;subd=vikasyadav&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vikasyadav.wordpress.com/2009/09/12/c-language-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f04bd443494c3d76f07c999c41aed741?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jeff</media:title>
		</media:content>
	</item>
		<item>
		<title>Frequently asked Questions (FAQ) about C++</title>
		<link>http://vikasyadav.wordpress.com/2008/03/27/faq-cplusplus/</link>
		<comments>http://vikasyadav.wordpress.com/2008/03/27/faq-cplusplus/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 09:29:26 +0000</pubDate>
		<dc:creator>JEFFREY MOORE</dc:creator>
				<category><![CDATA[VC++ Training]]></category>
		<category><![CDATA[FAQ C++]]></category>
		<category><![CDATA[Programming in VC++]]></category>
		<category><![CDATA[Visual C++]]></category>
		<category><![CDATA[What is C++]]></category>
		<category><![CDATA[What is Object Oriented Programming]]></category>
		<category><![CDATA[working with C++]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Q. What is C++? A: C++ is programming language with follows object oriented way of developing software. Object oriented software development means achieving the purpose/goals of a software by defining and designing, creating, manipulating, relating, and distroying objects. C++ is programming language is derived from C, but C++ has many addtional features not available in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vikasyadav.wordpress.com&amp;blog=3291303&amp;post=1&amp;subd=vikasyadav&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="cppcontent" align="justify"><span class="cppcontentlink"><strong>Q. What is C++?</strong></span><br />
<strong> A:</strong> C++ is programming language with follows object oriented way of developing software. Object oriented software development means achieving the purpose/goals of a software by defining and designing, creating, manipulating, relating, and distroying objects. C++ is programming language is derived from C, but C++ has many addtional features not available in C. C++ broadly can be said as C++ = C plus object oriented features plus templates.</p>
<p class="cppcontent"><span class="cppcontentlink"><strong>Q: What are Objects?</strong></span><br />
<strong> A.</strong> An object can be defined as a unit holding data and the capabilities to manipulate data.</p>
<p align="justify"><span class="cppcontentlink"><strong>Q. Is the knowledge of C Programming necessary to learn C++?</strong></span><br />
<span class="cppcontent"><strong>A:</strong> No, the knowledge of C programming is NOT NECESSARY to learn. Infact, our exeperiece has shown that it is better if student does not know C while taking up C++ training. There are certain concepts which are directly opposite in C and C++.</span></p>
<p align="justify"><span class="cppcontentlink"><strong>Q. Why C++ is so popular?</strong></span><br />
<span class="cppcontent"><strong>A:</strong> In simple language, C++ is popular becuase of its capabilities to create fast running, low memory occupying, low CPU time occupying applications in minimal time requirements. After assembly lanugage, C++ is the most efficient progrmaming language for almost all the Operating Systems in the World. C++ offers object oriented capabilities and pointer manipulation capabilities which together enables developer to create great applications quickly.</span></p>
<p align="justify"><span class="cppcontentlink"><strong>Q. What are the pre-requisite to learn C++?</strong></span><br />
<span class="cppcontent"><strong>A:</strong> All you need to learn C++ is good logical and analytical mind, good imagination and reasoning capabilities. It is NOT essential or compulsory to have a science or engineering background. We have seen some of the best C++ developers from non-science or non engineering background.</span></p>
<p align="justify"><span class="cppcontentlink"><strong>Q. Is C++ difficult to learn?</strong></span><br />
<span class="cppcontent"><strong>A: </strong>YES and NO. Yes, because it is comparatively difficult when compared to other programming languages like Java or Pascal or other popular development tools like Visual Basic and, No because it is not difficult in absolute terms. The primary reason for C++ being difficult to learn is students do not visualize memory. If the students visualize memory, C++ will be the most enjoyable and fun to learn and code in.</span></p>
<p align="justify"><span class="cppcontentlink"><strong>Q. What is Object Oriented Programming?</strong></span><br />
<span class="cppcontent"><strong>A:</strong> Object Oriented Programming is the capabilities of the respective programming language to create, manipulate, distroy and operate on Objects. Objects can be defined as Data and the capabilities to manipuate data put together in one single unit. C++ offers rich object oeriented features and capabilities. See </span><span class="cppcontentlink2"><a title="Visual C++ Training" href="http://adventurenfun.com/visualc">Object Oriented Programming in C++</a></span><span class="cppcontent"><a title="Visual C++ Training" href="http://adventurenfun.com/visualc"> </a>for course curriculum.</span></p>
<p><span class="cppcontentlink"><strong>Q. How is C++ different from Java?</strong></span><br />
<span class="cppcontent"><strong>A:</strong> Java is derived from C++ and offers many features of C++ and does not offer some features of C++. Java is way simpler compared to C++ and offers less object oriented features compared to C++. Overall, there are many concpets which are common and and many are not.</span></p>
<p align="justify"><span class="cppcontentlink"><strong>Q. How long does it take to learn C++?</strong></span><br />
<span class="cppcontent"><strong>A:</strong> Varies greatly on many factors. In general, the fundamental C++ training should take between 50 to 70 hours of instructions and about same number of hours for self practice.</span></p>
<p><span class="cppcontentlink"><strong>Q. What software do I need to start working with C++?</strong></span><br />
<span class="cppcontent"><strong>A:</strong> Turbo C++ is the best software for the beginers to start working with C++. It is simple to use, offers excellent help, good features overall.</span></p>
<p align="justify"><span class="cppcontentlink"><strong>Q. What is Visual C++ (VC++)?</strong></span><br />
<span class="cppcontent"><strong>A: </strong>Visual C++ is the C++ development and published by Microsoft Corporation. It is meant for creating applications for Windows family of Operating Systems. VC++ is NOT A PROGRAMMING language. <a href="http://adventurenfun.com/visualc">Programming in VC++</a>, means actually programming in C++ with ready-to-use classes library available with VC++.</span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vikasyadav.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vikasyadav.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vikasyadav.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vikasyadav.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vikasyadav.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vikasyadav.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vikasyadav.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vikasyadav.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vikasyadav.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vikasyadav.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vikasyadav.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vikasyadav.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vikasyadav.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vikasyadav.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vikasyadav.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vikasyadav.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vikasyadav.wordpress.com&amp;blog=3291303&amp;post=1&amp;subd=vikasyadav&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vikasyadav.wordpress.com/2008/03/27/faq-cplusplus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f04bd443494c3d76f07c999c41aed741?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jeff</media:title>
		</media:content>
	</item>
	</channel>
</rss>
