<?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>Bhavanesh&#039;s Blog</title>
	<atom:link href="http://bhavanesh.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bhavanesh.wordpress.com</link>
	<description>OOP334</description>
	<lastBuildDate>Sat, 17 Jul 2010 13:40:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bhavanesh.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Bhavanesh&#039;s Blog</title>
		<link>http://bhavanesh.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bhavanesh.wordpress.com/osd.xml" title="Bhavanesh&#039;s Blog" />
	<atom:link rel='hub' href='http://bhavanesh.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Why Linklist?</title>
		<link>http://bhavanesh.wordpress.com/2010/07/17/why-linklist/</link>
		<comments>http://bhavanesh.wordpress.com/2010/07/17/why-linklist/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 13:40:40 +0000</pubDate>
		<dc:creator>bapatel5</dc:creator>
				<category><![CDATA[OOP344]]></category>

		<guid isPermaLink="false">http://bhavanesh.wordpress.com/?p=78</guid>
		<description><![CDATA[Linked lists are used to store collections of data. A collection of data can be stored in array. However, an array is a sequential structure meaning that it is a group of memory elements located in contiguous locations (located next to one another in a group). You need to know how many elements there will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bhavanesh.wordpress.com&amp;blog=13650341&amp;post=78&amp;subd=bhavanesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Linked lists are used to store collections of data. A collection of data can be stored in array. However, an array is a sequential structure meaning that it is a group of memory elements located in contiguous locations (located next to one another in a group). You need to know how many elements there will be and you need to allocate a block of memory for them. </p>
<p>When you don&#8217;t know how many elements there will be, and if elements need to be inserted and deleted frequently, it is better to use a linked list. This is because each element for a linked list is created as needed and can be stored anywhere in the free memory space &#8211; the elements in the list do not have to be stored in contiguous locations. </p>
<p>Each element in a linked list is referred to as a node. In a simple singly linked list, each element has two fields: </p>
<p>Data member &#8211; contains the data (in our implementation, this is called datum)<br />
Link member &#8211; contains the pointer to the next node (in our implementation, this is called next) </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bhavanesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bhavanesh.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bhavanesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bhavanesh.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bhavanesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bhavanesh.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bhavanesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bhavanesh.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bhavanesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bhavanesh.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bhavanesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bhavanesh.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bhavanesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bhavanesh.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bhavanesh.wordpress.com&amp;blog=13650341&amp;post=78&amp;subd=bhavanesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bhavanesh.wordpress.com/2010/07/17/why-linklist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7f3ac696581b5200d77389f3d39495?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bapatel5</media:title>
		</media:content>
	</item>
		<item>
		<title>Bitwise Operator</title>
		<link>http://bhavanesh.wordpress.com/2010/06/18/bitwise-operator/</link>
		<comments>http://bhavanesh.wordpress.com/2010/06/18/bitwise-operator/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 13:48:54 +0000</pubDate>
		<dc:creator>bapatel5</dc:creator>
				<category><![CDATA[OOP344]]></category>

		<guid isPermaLink="false">http://bhavanesh.wordpress.com/?p=59</guid>
		<description><![CDATA[Real world example using bitwise operator IP Address. . . . . . . . . . . . ..: 192.168.3.2 Subnet Mask . . . . . . . . . . . : 255.255.254.0 192.168.3.2 == 11000000 10101000 00000011 00000010 255.255.254 == 11111111 11111111 11111110 00000000 Network ID = IP Address &#38; Subnet [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bhavanesh.wordpress.com&amp;blog=13650341&amp;post=59&amp;subd=bhavanesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Real world example using bitwise operator</p>
<p>IP Address. . . . . . . . . . . . ..: 192.168.3.2<br />
Subnet Mask . . . . . . . . . . . : 255.255.254.0</p>
<p>192.168.3.2   == 11000000 10101000 00000011 00000010<br />
255.255.254 == 11111111 11111111 11111110 00000000</p>
<p>Network ID = IP Address &amp; Subnet Mask<br />
= 11000000 10101000 00000010 00000000<br />
= 192.168.2.0</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bhavanesh.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bhavanesh.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bhavanesh.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bhavanesh.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bhavanesh.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bhavanesh.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bhavanesh.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bhavanesh.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bhavanesh.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bhavanesh.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bhavanesh.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bhavanesh.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bhavanesh.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bhavanesh.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bhavanesh.wordpress.com&amp;blog=13650341&amp;post=59&amp;subd=bhavanesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bhavanesh.wordpress.com/2010/06/18/bitwise-operator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7f3ac696581b5200d77389f3d39495?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bapatel5</media:title>
		</media:content>
	</item>
		<item>
		<title>iof-edit</title>
		<link>http://bhavanesh.wordpress.com/2010/06/04/iof-edit/</link>
		<comments>http://bhavanesh.wordpress.com/2010/06/04/iof-edit/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 14:20:29 +0000</pubDate>
		<dc:creator>bapatel5</dc:creator>
				<category><![CDATA[OOP344]]></category>

		<guid isPermaLink="false">http://bhavanesh.wordpress.com/?p=53</guid>
		<description><![CDATA[variable presentation of function iof_edit click on image<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bhavanesh.wordpress.com&amp;blog=13650341&amp;post=53&amp;subd=bhavanesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>variable presentation of function iof_edit</p>
<p><a href="http://bhavanesh.files.wordpress.com/2010/06/iof_edit3.jpg"><img src="http://bhavanesh.files.wordpress.com/2010/06/iof_edit3.jpg?w=450&#038;h=151" alt="" title="iof_edit" width="450" height="151" class="aligncenter size-full wp-image-54" /></a></p>
<p><em>click on image</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bhavanesh.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bhavanesh.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bhavanesh.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bhavanesh.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bhavanesh.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bhavanesh.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bhavanesh.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bhavanesh.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bhavanesh.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bhavanesh.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bhavanesh.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bhavanesh.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bhavanesh.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bhavanesh.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bhavanesh.wordpress.com&amp;blog=13650341&amp;post=53&amp;subd=bhavanesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bhavanesh.wordpress.com/2010/06/04/iof-edit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7f3ac696581b5200d77389f3d39495?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bapatel5</media:title>
		</media:content>

		<media:content url="http://bhavanesh.files.wordpress.com/2010/06/iof_edit3.jpg" medium="image">
			<media:title type="html">iof_edit</media:title>
		</media:content>
	</item>
		<item>
		<title>Pointer</title>
		<link>http://bhavanesh.wordpress.com/2010/06/01/pointer/</link>
		<comments>http://bhavanesh.wordpress.com/2010/06/01/pointer/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 16:38:00 +0000</pubDate>
		<dc:creator>bapatel5</dc:creator>
				<category><![CDATA[OOP344]]></category>

		<guid isPermaLink="false">http://bhavanesh.wordpress.com/?p=34</guid>
		<description><![CDATA[A pointer is a variable which contains the address in memory of another variable. We can have a pointer to any variable type. When a pointer is declared it does not point anywhere. You must set it to point somewhere before you use it.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bhavanesh.wordpress.com&amp;blog=13650341&amp;post=34&amp;subd=bhavanesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A pointer is a variable which contains the address in memory of another variable. We can have a pointer to any variable type.</p>
<p><a href="http://bhavanesh.files.wordpress.com/2010/06/img2.gif"><img src="http://bhavanesh.files.wordpress.com/2010/06/img2.gif?w=354&#038;h=313" alt="" title="Img" width="354" height="313" class="aligncenter size-full wp-image-38" /></a></p>
<p><em>When a pointer is declared it does not point anywhere. You must set it to point somewhere before you use it. </em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bhavanesh.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bhavanesh.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bhavanesh.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bhavanesh.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bhavanesh.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bhavanesh.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bhavanesh.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bhavanesh.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bhavanesh.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bhavanesh.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bhavanesh.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bhavanesh.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bhavanesh.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bhavanesh.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bhavanesh.wordpress.com&amp;blog=13650341&amp;post=34&amp;subd=bhavanesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bhavanesh.wordpress.com/2010/06/01/pointer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7f3ac696581b5200d77389f3d39495?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bapatel5</media:title>
		</media:content>

		<media:content url="http://bhavanesh.files.wordpress.com/2010/06/img2.gif" medium="image">
			<media:title type="html">Img</media:title>
		</media:content>
	</item>
		<item>
		<title>SVN vs VSS</title>
		<link>http://bhavanesh.wordpress.com/2010/05/19/svn-vs-vss/</link>
		<comments>http://bhavanesh.wordpress.com/2010/05/19/svn-vs-vss/#comments</comments>
		<pubDate>Wed, 19 May 2010 19:06:13 +0000</pubDate>
		<dc:creator>bapatel5</dc:creator>
				<category><![CDATA[OOP344]]></category>

		<guid isPermaLink="false">http://bhavanesh.wordpress.com/?p=18</guid>
		<description><![CDATA[I have worked with used Microsoft Visual Sourcesafe and now in my Project. One thing i noticed though is that teammates really have to communicate. Although we are just two in the team, in order to prevent the tedious conflict resolutions, we needed to tell the other which part are we revising/coding. Unlike in VSS, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bhavanesh.wordpress.com&amp;blog=13650341&amp;post=18&amp;subd=bhavanesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have worked with used Microsoft Visual Sourcesafe and now in my Project. One thing i noticed though is that teammates really have to communicate.  Although we are just two in the team, in order to prevent the tedious conflict resolutions, we needed to tell the other which part are we revising/coding.  </p>
<p>Unlike in VSS, a user checking out a file is warned when others have it checked out (VSS has allow multiple checkouts configuration which is off by default), so if one&#8217;s changes is not a priority, he can wait for the other user to finish his changes before applying his own.  I couldn&#8217;t find this feature on our current setup which i think is a very useful notification.</p>
<p>As i&#8217;ve said, if you have multiple checkouts allowed, you can ignore the warning and proceed with your changes.  The last man to check in will do the conflict resolution (although i admit, vss conflict resolver sucks).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bhavanesh.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bhavanesh.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bhavanesh.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bhavanesh.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bhavanesh.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bhavanesh.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bhavanesh.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bhavanesh.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bhavanesh.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bhavanesh.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bhavanesh.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bhavanesh.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bhavanesh.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bhavanesh.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bhavanesh.wordpress.com&amp;blog=13650341&amp;post=18&amp;subd=bhavanesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bhavanesh.wordpress.com/2010/05/19/svn-vs-vss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7f3ac696581b5200d77389f3d39495?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bapatel5</media:title>
		</media:content>
	</item>
	</channel>
</rss>
