<?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>did you ever surf on the help files?</title>
	<atom:link href="http://clessons.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://clessons.wordpress.com</link>
	<description>just try it</description>
	<lastBuildDate>Fri, 28 Aug 2009 11:28:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='clessons.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>did you ever surf on the help files?</title>
		<link>http://clessons.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://clessons.wordpress.com/osd.xml" title="did you ever surf on the help files?" />
	<atom:link rel='hub' href='http://clessons.wordpress.com/?pushpress=hub'/>
		<item>
		<title>your first code</title>
		<link>http://clessons.wordpress.com/2009/08/28/your-first-code/</link>
		<comments>http://clessons.wordpress.com/2009/08/28/your-first-code/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 10:25:56 +0000</pubDate>
		<dc:creator>wdevcguru</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://clessons.wordpress.com/?p=9</guid>
		<description><![CDATA[Objectives: Having read this section you should have an understanding of: 1.a preprocessor directive that must be present in all your C programs. 2.a simple C function used to write information to your screen. 3.how to add comments to your programs Now that you&#8217;ve seen the compiler in action it&#8217;s time for you to write [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clessons.wordpress.com&amp;blog=9212647&amp;post=9&amp;subd=clessons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">Objectives:</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">Having read this section you should have an understanding of:</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">1.a preprocessor directive that must be present in all your C programs.</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">2.a simple C function used to write information to your screen.</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">3.how to add comments to your programs</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">Now that you&#8217;ve seen the compiler in action it&#8217;s time for you to write your very own first C program. You can probably guess what it&#8217;s going to be &#8211; the program that everyone writes just to</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">check they understand the very, very, very basics of what is going on in a new language.</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">Yes &#8211; it&#8217;s the ubiquitous &#8220;Hello World&#8221; program. All your first program is going to do is print the message &#8220;Hello World&#8221; on the screen.</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">The program is a short one, to say the least. Here it is:</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">#include &lt;stdio.h&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">int main()</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">{</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">printf(&#8220;Hello World\n&#8221;);</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">return 0;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">}</div>
<p><strong>Previous:</strong> <a class="aligncenter" style="display:inline!important;" title="a computer" href="http://clessons.wordpress.com/2009/08/28/computer-wass-ist-das-bro/" target="_self">&#8220;Computer&#8221;?? was ist das bro?</a></p>
<p><strong>Objectives:</strong></p>
<div>Having read this section you should have an understanding of:</div>
<div>1. a preprocessor directive that must be present in all your C programs.</div>
<div>2. a simple C function used to write information to your screen.</div>
<div>3. how to add comments to your programs</div>
<div></div>
<div>Now that you&#8217;ve seen the compiler in action it&#8217;s time for you to write your very own first C program. You can probably guess what it&#8217;s going to be &#8211; the program that everyone writes just to check they understand the very, very, very basics of what is going on in a new language.</div>
<div></div>
<div>Yes &#8211; it&#8217;s the ubiquitous &#8220;Hello World&#8221; program. All your first program is going to do is print the message &#8220;Hello World&#8221; on the screen.</div>
<div>The program is a short one, to say the least.</div>
<div></div>
<div><strong>Here it is:</strong></div>
<blockquote>
<div>#include &lt;stdio.h&gt;</div>
<div>int main()</div>
<div>{</div>
<div><a class="wp-caption" title="stop nuclear technology!" href="http://en.wikipedia.org/wiki/Printf" target="_blank">printf</a>(&#8220;<a class="wp-caption" title="environmental issues" href="http://en.wikipedia.org/wiki/Hello_world_program" target="_blank">Hello World</a>\n&#8221;);</div>
<div>return 0;</div>
<div>}</div>
</blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clessons.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clessons.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clessons.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clessons.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clessons.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clessons.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clessons.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clessons.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clessons.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clessons.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clessons.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clessons.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clessons.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clessons.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clessons.wordpress.com&amp;blog=9212647&amp;post=9&amp;subd=clessons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clessons.wordpress.com/2009/08/28/your-first-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4930acd15bab3b459ff4b7ed85f3b7a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wdevcguru</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;computer&#8221; ?? wass ist das bro?</title>
		<link>http://clessons.wordpress.com/2009/08/28/computer-wass-ist-das-bro/</link>
		<comments>http://clessons.wordpress.com/2009/08/28/computer-wass-ist-das-bro/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 10:12:04 +0000</pubDate>
		<dc:creator>wdevcguru</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[overview]]></category>

		<guid isPermaLink="false">http://clessons.wordpress.com/2009/08/28/computer-wass-ist-das-bro/</guid>
		<description><![CDATA[Previous: overview PS: If I were you, I would skip this page A computer is a device that accepts information (in the form of digitalized data) and manipulates it for some result based on a program or sequence of instructions on how the data is to be processed. Complex computers also include the means for storing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clessons.wordpress.com&amp;blog=9212647&amp;post=5&amp;subd=clessons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Previous: </strong><a class="aligncenter" style="display:inline!important;" title="overview" href="http://clessons.wordpress.com/2009/08/28/overview/" target="_self">overview</a></p>
<p>PS: If I were you, I would skip this page <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>A computer is a device that accepts information (in the form of digitalized data) and manipulates it for some result based on a program or sequence of instructions on how the data is to be processed.</p>
<p><span id="more-5"></span></p>
<p>Complex computers also include the means for storing data (including the program, which is also a form of data) for some necessary duration. A program may be invariable and built into the computer (and called logic circuitry as it is on microprocessors) or different programs may be provided to the computer (loaded into its storage and then started by an administrator or user). Today&#8217;s computers have both kinds of programming.</p>
<p>Most histories of the modern computer begin with the Analytical Engine envisioned by Charles Babbage following the mathematical ideas of George Boole, the mathematician who first stated the principles of logic inherent in today&#8217;s digital computer. Babbage&#8217;s assistant and collaborator, Ada Lovelace, is said to have introduced the ideas of program loops and subroutines and is sometimes considered the first programmer.</p>
<p>Apart from mechanical calculators, the first really useable computers began with the vacuum tube, accelerated with the invention of the transistor, which then became embedded in large numbers in integrated circuits, ultimately making possible the relatively low-cost personal computer.</p>
<p>Modern computers inherently follow the ideas of the stored program laid out by John von Neumann in 1945. Essentially, the program is read by the computer one instruction at a time, an operation is performed, and the computer then reads in the next instruction, and so on.</p>
<p>Recently, computers and programs have been devised that allow multiple programs (and computers) to work on the same problem at the same time in parallel. With the advent of the Internet and higher bandwidth data transmission, programs and data that are part of the same overall project can be distributed over a network and embody the Sun Microsystems slogan: &#8220;The network is the computer.&#8221;</p>
<p><strong>Next: <span style="font-weight:normal;"><a class="aligncenter" style="display:inline!important;" title="hello world babe." href="http://clessons.wordpress.com/2009/08/28/your-first-code/" target="_self">your first code</a></span></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clessons.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clessons.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clessons.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clessons.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clessons.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clessons.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clessons.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clessons.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clessons.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clessons.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clessons.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clessons.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clessons.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clessons.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clessons.wordpress.com&amp;blog=9212647&amp;post=5&amp;subd=clessons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clessons.wordpress.com/2009/08/28/computer-wass-ist-das-bro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4930acd15bab3b459ff4b7ed85f3b7a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wdevcguru</media:title>
		</media:content>
	</item>
		<item>
		<title>Overview</title>
		<link>http://clessons.wordpress.com/2009/08/28/overview/</link>
		<comments>http://clessons.wordpress.com/2009/08/28/overview/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 08:51:32 +0000</pubDate>
		<dc:creator>wdevcguru</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://clessons.wordpress.com/?p=3</guid>
		<description><![CDATA[C is a general-purpose computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system. Although C was designed for implementing system software, it is also widely used for developing portable application software. C is one of the most popular programming languages. It is widely used on many different software platforms, and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clessons.wordpress.com&amp;blog=9212647&amp;post=3&amp;subd=clessons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="line-height:1.5em;margin:.4em 0 .5em;"><strong>C</strong> is a general-purpose computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the <a class="wp-caption" title="unix operating system" href="http://www.bell-labs.com/history/unix/" target="_blank">Unix operating system</a>.</p>
<p style="line-height:1.5em;margin:.4em 0 .5em;">Although C was designed for implementing system software, it is also widely used for developing portable application software.</p>
<p style="line-height:1.5em;margin:.4em 0 .5em;">C is one of the most popular programming languages.</p>
<p style="line-height:1.5em;margin:.4em 0 .5em;">It is widely used on many different software platforms, and there are few computer architectures for which a C compiler does not exist.</p>
<p style="line-height:1.5em;margin:.4em 0 .5em;">C has greatly influenced many other popular programming languages, most notably <a class="wp-caption" title="learn cpp" href="http://www.learncpp.com/" target="_blank">C++</a>, which originally began as an extension to C.</p>
<p style="line-height:1.5em;margin:.4em 0 .5em;">
<p style="line-height:1.5em;margin:.4em 0 .5em;"><a class="aligncenter" style="display:inline!important;" title="&quot;a computer&quot;" href="http://clessons.wordpress.com/2009/08/28/computer-wass-ist-das-bro/" target="_self">&#8220;Computer&#8221;?? was ist das bro?</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clessons.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clessons.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clessons.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clessons.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clessons.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clessons.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clessons.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clessons.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clessons.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clessons.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clessons.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clessons.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clessons.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clessons.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clessons.wordpress.com&amp;blog=9212647&amp;post=3&amp;subd=clessons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clessons.wordpress.com/2009/08/28/overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4930acd15bab3b459ff4b7ed85f3b7a6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wdevcguru</media:title>
		</media:content>
	</item>
	</channel>
</rss>
