<?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>C ++ &#187; Hard Drive</title>
	<atom:link href="http://www.bizzymicbizness.com/cplusplus/tag/hard-drive/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bizzymicbizness.com/cplusplus</link>
	<description>All about C++</description>
	<lastBuildDate>Mon, 19 Oct 2009 12:38:17 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Introduction</title>
		<link>http://www.bizzymicbizness.com/cplusplus/introduction</link>
		<comments>http://www.bizzymicbizness.com/cplusplus/introduction#comments</comments>
		<pubDate>Thu, 27 Aug 2009 02:30:38 +0000</pubDate>
		<dc:creator>BMB</dc:creator>
				<category><![CDATA[Introduction to C++]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Hard Drive]]></category>
		<category><![CDATA[Random Access Memory]]></category>
		<category><![CDATA[Variable]]></category>

		<guid isPermaLink="false">http://www.bizzymicbizness.com/cplusplus/?p=99</guid>
		<description><![CDATA[To process the information of your program or the requests that your program presents to the user, the computer uses

(B-1) Two types of storage spaces


(B-1) The hard drive

A static storage area that keeps its information all the time, almost regardless of what happens to your computer


(B-1) Random Access Memory (RAM)

This storage area keeps its information [...]]]></description>
			<content:encoded><![CDATA[<p>To process the information of your program or the requests that your program presents to the user, the computer uses</p>
<ul>
<li>(B-1) Two types of storage spaces</li>
</ul>
<p><br class="blank" /><br />
(B-1) The hard drive</p>
<ul>
<li>A static storage area that keeps its information all the time, almost regardless of what happens to your computer</li>
</ul>
<p><br class="blank" /><br />
(B-1) Random Access Memory (RAM)</p>
<ul>
<li>This storage area keeps its information only when the computer is turned on. This means that the RAM loses its Information when the computer is turned off</li>
</ul>
<p><br class="blank" /><br />
When the user “opens” or launches a program</p>
<ul>
<li>Part of the program “goes” into the RAM</li>
</ul>
<p><br class="blank" /><br />
If or when the application is not used anymore, which means that if the user “closes” the application</p>
<ul>
<li>The part of memory that the application was using in the RAM is gone and the memory space that the application was using becomes available</li>
</ul>
<p><br class="blank" /><br />
When your program opens</p>
<ul>
<li>Part of your application gets “loaded” into the RAM</li>
</ul>
<p><br class="blank" /><br />
When the user is using your application</p>
<ul>
<li>The information that your application requests also goes into the RAM while your application is processing such requests</li>
</ul>
<p><br class="blank" /><br />
Before using such a variable</p>
<ul>
<li>You must first let the compiler know</li>
</ul>
<p><br class="blank" /><br />
Letting the compiler know about a variable is referred to</p>
<ul>
<li>“Declaring” the variable</li>
</ul>
<p><br class="blank" /><br />
The compiler will need two pieces of information concerning each variable</p>
<ul>
<li>The amount of space the variable will need</li>
<li>A name to recognize that variable</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bizzymicbizness.com/cplusplus/introduction/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

