<?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>Interview questions</title>
	<atom:link href="http://iv2000.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://iv2000.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 30 Aug 2009 10:09:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='iv2000.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Interview questions</title>
		<link>http://iv2000.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://iv2000.wordpress.com/osd.xml" title="Interview questions" />
	<atom:link rel='hub' href='http://iv2000.wordpress.com/?pushpress=hub'/>
		<item>
		<title>C# struct and class &#8211; what is difference?</title>
		<link>http://iv2000.wordpress.com/2009/08/28/c-struct-and-class-what-is-difference/</link>
		<comments>http://iv2000.wordpress.com/2009/08/28/c-struct-and-class-what-is-difference/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 15:05:47 +0000</pubDate>
		<dc:creator>lastdon2000</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[csharp]]></category>

		<guid isPermaLink="false">http://iv2000.wordpress.com/?p=8</guid>
		<description><![CDATA[struct is value-type object, class &#8211; is reference type object struct may inherit only from interfaces, not structs or classes struct can&#8217;t contain destructor<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iv2000.wordpress.com&amp;blog=9216207&amp;post=8&amp;subd=iv2000&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li>struct is value-type object, class &#8211; is reference type object</li>
<li>struct may inherit only from interfaces, not structs or classes</li>
<li>struct can&#8217;t contain destructor</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iv2000.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iv2000.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iv2000.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iv2000.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iv2000.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iv2000.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iv2000.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iv2000.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iv2000.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iv2000.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iv2000.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iv2000.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iv2000.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iv2000.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iv2000.wordpress.com&amp;blog=9216207&amp;post=8&amp;subd=iv2000&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iv2000.wordpress.com/2009/08/28/c-struct-and-class-what-is-difference/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/630af19ec74d0f3e6ae9f6662fd80a15?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lastdon2000</media:title>
		</media:content>
	</item>
		<item>
		<title>C++ cout</title>
		<link>http://iv2000.wordpress.com/2009/08/28/c-cout/</link>
		<comments>http://iv2000.wordpress.com/2009/08/28/c-cout/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 15:02:33 +0000</pubDate>
		<dc:creator>lastdon2000</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[C++]]></category>

		<guid isPermaLink="false">http://iv2000.wordpress.com/?p=3</guid>
		<description><![CDATA[What is result of the following code: int a = 10; cout &#60;&#60; ++a &#60;&#60; &#8221; &#8221; &#60;&#60; a &#60;&#60; &#8221; &#8221; &#60;&#60; a++; My first reaction was 11 11 11. However after compiling and running in the VS 2008 I got: 12 10 10 So what is correct answer?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iv2000.wordpress.com&amp;blog=9216207&amp;post=3&amp;subd=iv2000&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>What is result of the following code:</p>
<p>int a = 10;<br />
cout &lt;&lt; ++a &lt;&lt; &#8221; &#8221; &lt;&lt; a &lt;&lt; &#8221; &#8221; &lt;&lt; a++;</p>
<p>My first reaction was 11 11 11.<br />
However after compiling and running in the VS 2008 I got:<br />
<strong>12 10 10</strong></p>
<p>So what is correct answer?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iv2000.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iv2000.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iv2000.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iv2000.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iv2000.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iv2000.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iv2000.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iv2000.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iv2000.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iv2000.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iv2000.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iv2000.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iv2000.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iv2000.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iv2000.wordpress.com&amp;blog=9216207&amp;post=3&amp;subd=iv2000&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iv2000.wordpress.com/2009/08/28/c-cout/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/630af19ec74d0f3e6ae9f6662fd80a15?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lastdon2000</media:title>
		</media:content>
	</item>
	</channel>
</rss>
