<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="wordpress/2.2.1" --><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Easy C Tutorials</title>
	<link>http://easyctutorials.com</link>
	<description>C Tutorials|C++ Tutorials</description>
	<pubDate>Tue, 01 Jul 2008 18:47:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/EasyCTutorials" type="application/rss+xml" /><feedburner:emailServiceId>EasyCTutorials</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>New Development Related Site</title>
		<link>http://feedproxy.google.com/~r/EasyCTutorials/~3/UJhCCCWjKO4/</link>
		<comments>http://easyctutorials.com/new-development-related-site/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 17:47:44 +0000</pubDate>
		<dc:creator>Adam McKerlie</dc:creator>
		
		<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://easyctutorials.com/new-development-related-site/</guid>
		<description><![CDATA[Recently, my friend and I, launched our newest site.  Its called Devjargon, and its about software development, managing programmers and things along those lines.
Here are a few of our best articles:

 6 Tips for Programming in a Group
How to Become a Great Developer
Processes are for the team
The Importance of Taking a Break
There’s always a solution
5 Ways [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, my friend and I, launched our newest site.  Its called <a href="http://devjargon.com">Devjargon</a>, and its about software development, managing programmers and things along those lines.</p>
<p>Here are a few of our best articles:</p>
<ul>
<li> <a href="http://devjargon.com/developement/tips-for-programming-in-a-group/" rel="bookmark" title="Permanent Link to 6 Tips for Programming in a Group">6 Tips for Programming in a Group</a></li>
<li><a href="http://devjargon.com/developement/being-a-great-developer/" rel="bookmark" title="Permanent Link to How to Become a Great Developer">How to Become a Great Developer</a></li>
<li><a href="http://devjargon.com/developement/processes-are-for-the-team/" rel="bookmark" title="Permanent Link to Processes are for the team">Processes are for the team</a></li>
<li><a href="http://devjargon.com/developement/the-importance-of-taking-a-break/" rel="bookmark" title="Permanent Link to The Importance of Taking a Break">The Importance of Taking a Break</a></li>
<li><a href="http://devjargon.com/management/theres-always-a-solution/" rel="bookmark" title="Permanent Link to There’s always a solution">There’s always a solution</a></li>
<li><a href="http://devjargon.com/management/5-ways-to-make-sure-your-project-fails/" rel="bookmark" title="Permanent Link to 5 Ways to Make Sure your Project Fails">5 Ways to Make Sure your Project Fails</a></li>
</ul>
<p>Whether your an experienced developer or a novice manager, these articles will hopefully help you.  Head on over to <a href="http://devjargon.com">devjargon</a>, or subscribe to their feed to get <a href="http://devjargon.com/feed">free updates on our content</a>.  We update the content every few days on that site.</p>
<img src="http://feeds.feedburner.com/~r/EasyCTutorials/~4/UJhCCCWjKO4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://easyctutorials.com/new-development-related-site/feed/</wfw:commentRss>
		<feedburner:origLink>http://easyctutorials.com/new-development-related-site/</feedburner:origLink></item>
		<item>
		<title>The Mysteries of Pointers</title>
		<link>http://feedproxy.google.com/~r/EasyCTutorials/~3/rpD1xlD2Ok8/</link>
		<comments>http://easyctutorials.com/the-mysteries-of-pointers/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 14:15:16 +0000</pubDate>
		<dc:creator>Adam McKerlie</dc:creator>
		
		<category><![CDATA[Data structures]]></category>

		<guid isPermaLink="false">http://easyctutorials.com/the-mysteries-of-pointers/</guid>
		<description><![CDATA[One of the hardest concepts in the C programming language for me is Pointers.  To this day I still often have to look into my text books when I'm diving deep into pointer world.  Hopefully this tutorial will help demystify pointers for you.]]></description>
			<content:encoded><![CDATA[<p>One of the hardest concepts in the C programming language for me is Pointers.  To this day I still often have to look into my text books when I&#8217;m diving deep into pointer world.  Hopefully this tutorial will help demystify pointers for you.</p>
<p><strong>What are Pointers?</strong><br />
Pointers got their name for one reason: they &#8220;point&#8221; to locations in memory.  Pointers are just variables that store memory addresses, usually the addresses of other variables.  With this memory address you&#8217;ll then be able to go to that address and retrieve the data stored in it. If you happen to have a large of data that you want to pass into a function it&#8217;s a lot easier to pass its location to the function than to copy every element of the data.</p>
<p> <a href="http://easyctutorials.com/the-mysteries-of-pointers/#more-19" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/EasyCTutorials/~4/rpD1xlD2Ok8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://easyctutorials.com/the-mysteries-of-pointers/feed/</wfw:commentRss>
		<feedburner:origLink>http://easyctutorials.com/the-mysteries-of-pointers/</feedburner:origLink></item>
		<item>
		<title>The Art of Writing Maintainable Code</title>
		<link>http://feedproxy.google.com/~r/EasyCTutorials/~3/GOimrC9nqxE/</link>
		<comments>http://easyctutorials.com/the-art-of-writing-maintainable-code/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 02:23:20 +0000</pubDate>
		<dc:creator>Adam McKerlie</dc:creator>
		
		<category><![CDATA[The Art of]]></category>

		<guid isPermaLink="false">http://easyctutorials.com/the-art-of-writing-maintainable-code/</guid>
		<description><![CDATA[Unmaintainable code is a big problem in the business world (where programs can cost millions of dollars). Knowing how to write maintainable code is a great way to solve these problems.  This programming tutorial provides three tips on writing maintainable code.]]></description>
			<content:encoded><![CDATA[<blockquote>Debugging is twice as hard as writing code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.  -  <a href="http://www.cs.princeton.edu/~bwk/">Brian Kernighan</a></p></blockquote>
<p>If you&#8217;ve been programming for any length of time I&#8217;m sure at one time you&#8217;ve had the pleasure (or lack thereof) of wading through another persons code.  It is definitely not a pleasurable journey when the code is new, written with the newest standards; but when the code is legacy it can be a downright hair-pulling experience.<br />
 <a href="http://easyctutorials.com/the-art-of-writing-maintainable-code/#more-18" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/EasyCTutorials/~4/GOimrC9nqxE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://easyctutorials.com/the-art-of-writing-maintainable-code/feed/</wfw:commentRss>
		<feedburner:origLink>http://easyctutorials.com/the-art-of-writing-maintainable-code/</feedburner:origLink></item>
		<item>
		<title>A Beginner’s Guide to Functions</title>
		<link>http://feedproxy.google.com/~r/EasyCTutorials/~3/yhi-yu52OgA/</link>
		<comments>http://easyctutorials.com/a-beginners-guide-to-functions/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 16:08:11 +0000</pubDate>
		<dc:creator>Adam McKerlie</dc:creator>
		
		<category><![CDATA[The Basics]]></category>

		<guid isPermaLink="false">http://easyctutorials.com/a-beginners-guide-to-functions/</guid>
		<description><![CDATA[Having trouble with user defined functions?  Don't know how to create your own function?  This tutorial goes over a number of different ways to create your own function.  From including it in a header file to creating your own prototype it has it all.]]></description>
			<content:encoded><![CDATA[<p>You have now learned how to <a href="http://easyctutorials.com/your-first-c-program/">write your first c program</a> as well as the different <a href="http://easyctutorials.com/loops-in-c/">loops in the c language</a> so its now time to learn about functions.  In general, functions are blocks of code that perform pre-defined commands to accomplish a certain task. You can either use the built-in functions included in the library or user defined functions (ones you create).<br />
 <a href="http://easyctutorials.com/a-beginners-guide-to-functions/#more-17" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/EasyCTutorials/~4/yhi-yu52OgA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://easyctutorials.com/a-beginners-guide-to-functions/feed/</wfw:commentRss>
		<feedburner:origLink>http://easyctutorials.com/a-beginners-guide-to-functions/</feedburner:origLink></item>
		<item>
		<title>Hello World with C++</title>
		<link>http://feedproxy.google.com/~r/EasyCTutorials/~3/t8ARyrmRI8s/</link>
		<comments>http://easyctutorials.com/hello-world-with-cplusplus/#comments</comments>
		<pubDate>Sun, 26 Aug 2007 23:58:01 +0000</pubDate>
		<dc:creator>Cayson Hiivala</dc:creator>
		
		<category><![CDATA[The Basics]]></category>

		<guid isPermaLink="false">http://easyctutorials.com/hello-world-with-c/</guid>
		<description><![CDATA[So you want to program in the C++ language?  Want to learn how to write your first program?  You've come to the right spot.  This tutorial will teach you how to successfully write your first C++ program.]]></description>
			<content:encoded><![CDATA[<p>Hello, and welcome to my first C++ tutorial. I am also going to happily assume that this is your first c++ tutorial too. If not, I hope to improve your understanding of c++. I will attempt to do so as simple as humanly possible. Shall we get started then?</p>
<p>In order to make programs you will need something called a <strong>compiler</strong>. We will use g++. A compiler I have come to love. I use linux so it comes with my operating system. I am assuming you are using windows, so follow the rules from this website: <a href="http://tinyurl.com/218jpb">G++</a>.<br />
 <a href="http://easyctutorials.com/hello-world-with-cplusplus/#more-15" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/EasyCTutorials/~4/t8ARyrmRI8s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://easyctutorials.com/hello-world-with-cplusplus/feed/</wfw:commentRss>
		<feedburner:origLink>http://easyctutorials.com/hello-world-with-cplusplus/</feedburner:origLink></item>
		<item>
		<title>Loops in C</title>
		<link>http://feedproxy.google.com/~r/EasyCTutorials/~3/00LWdD_NPUM/</link>
		<comments>http://easyctutorials.com/loops-in-c/#comments</comments>
		<pubDate>Sun, 26 Aug 2007 00:13:22 +0000</pubDate>
		<dc:creator>Adam McKerlie</dc:creator>
		
		<category><![CDATA[The Basics]]></category>

		<guid isPermaLink="false">http://easyctutorials.com/loops-in-c/</guid>
		<description><![CDATA[A basic guide on C loops.  Included is a guide on for loops, while loops, and do while loops.  Also explained are the Continue statement and Break statement.  This tutorial is a part of the "The Basics" tutorials to help you learn C programming.]]></description>
			<content:encoded><![CDATA[<p>If you want to repeat the same blocks of code over and over you have two choices.  Copy and paste each block or you can use a loop.  In C there are three different types of loops: for, while, and do&#8230;while.  Each of them has their own specific uses and syntax, and below I&#8217;ll explain all three.<br />
 <a href="http://easyctutorials.com/loops-in-c/#more-13" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/EasyCTutorials/~4/00LWdD_NPUM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://easyctutorials.com/loops-in-c/feed/</wfw:commentRss>
		<feedburner:origLink>http://easyctutorials.com/loops-in-c/</feedburner:origLink></item>
		<item>
		<title>The Art of Commenting Code</title>
		<link>http://feedproxy.google.com/~r/EasyCTutorials/~3/RGSTp2uqMB0/</link>
		<comments>http://easyctutorials.com/the-art-of-commenting-code/#comments</comments>
		<pubDate>Mon, 20 Aug 2007 14:00:58 +0000</pubDate>
		<dc:creator>Adam McKerlie</dc:creator>
		
		<category><![CDATA[The Art of]]></category>

		<category><![CDATA[Debugging]]></category>

		<guid isPermaLink="false">http://easyctutorials.com/the-art-of-commenting-code/</guid>
		<description><![CDATA[Tired of reading useless comments in a persons code?  Become a "Comment Master" in just five easy steps.  This tutorial will help you comment your code quicker, easier and with better results.  It'll also help your debugging techniques to have more readable comments.]]></description>
			<content:encoded><![CDATA[<p>No matter what other people say, commenting source code is an art form.  It takes finesse (and sometimes an English degree :P) to properly comment your code.  Some people are under the mindset &#8220;if its code, it has to be commented with long detailed comments&#8221; while others take the total opposite and barely comment a single line, and when they do they just explain the obvious.  Which mindset is best?  Neither!<br />
 <a href="http://easyctutorials.com/the-art-of-commenting-code/#more-12" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/EasyCTutorials/~4/RGSTp2uqMB0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://easyctutorials.com/the-art-of-commenting-code/feed/</wfw:commentRss>
		<feedburner:origLink>http://easyctutorials.com/the-art-of-commenting-code/</feedburner:origLink></item>
		<item>
		<title>The Mysteries of Header Files</title>
		<link>http://feedproxy.google.com/~r/EasyCTutorials/~3/7AQcq8YHgt4/</link>
		<comments>http://easyctutorials.com/the-mysteries-of-header-files/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 02:46:38 +0000</pubDate>
		<dc:creator>Adam McKerlie</dc:creator>
		
		<category><![CDATA[How it works]]></category>

		<guid isPermaLink="false">http://easyctutorials.com/the-mysteries-of-header-files/</guid>
		<description><![CDATA[Have you just started programming and saw the line #include &#60;stdio.h&#62;? Are you wondering what this so called ".h" file is and what it does? Well in the following article I'll go into detail about what a header file is, what its purpose is and also the most common header files.]]></description>
			<content:encoded><![CDATA[<p>Have you just started programming and saw the line <code>#include &lt;stdio.h&gt;</code>? Are you wondering what this so called &#8220;.h&#8221; file is and what it does and why it&#8217;s important? Well in the following article I&#8217;ll go into detail about what a header file is, what its purpose is and also the most common header files.<br />
 <a href="http://easyctutorials.com/the-mysteries-of-header-files/#more-11" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/EasyCTutorials/~4/7AQcq8YHgt4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://easyctutorials.com/the-mysteries-of-header-files/feed/</wfw:commentRss>
		<feedburner:origLink>http://easyctutorials.com/the-mysteries-of-header-files/</feedburner:origLink></item>
		<item>
		<title>Your First C Program</title>
		<link>http://feedproxy.google.com/~r/EasyCTutorials/~3/ubNV_ssa604/</link>
		<comments>http://easyctutorials.com/your-first-c-program/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 02:26:01 +0000</pubDate>
		<dc:creator>Adam McKerlie</dc:creator>
		
		<category><![CDATA[The Basics]]></category>

		<guid isPermaLink="false">http://easyctutorials.com/your-first-c-program/</guid>
		<description><![CDATA[So you want to program in the C language?  Want to learn how to write your first program?  You've come to the right spot.  This tutorial will teach you how to successfully write your first C program.]]></description>
			<content:encoded><![CDATA[<p>So, you want to be able to write C programs? Well, you have come to the right place. Over the next few weeks I&#8217;ll be writing a series of tutorials called <strong>&#8220;The Basics&#8221;</strong>. Each one of these tutorials will cover a different subject that will help you learn how to program in C. In this weeks tutorial I&#8217;ll teach you how to write your first C program.<br />
 <a href="http://easyctutorials.com/your-first-c-program/#more-10" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/EasyCTutorials/~4/ubNV_ssa604" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://easyctutorials.com/your-first-c-program/feed/</wfw:commentRss>
		<feedburner:origLink>http://easyctutorials.com/your-first-c-program/</feedburner:origLink></item>
		<item>
		<title>Arrays vs. Linked Lists</title>
		<link>http://feedproxy.google.com/~r/EasyCTutorials/~3/bkOHaGU9VhE/</link>
		<comments>http://easyctutorials.com/arrays-vs-linkedlists/#comments</comments>
		<pubDate>Sun, 12 Aug 2007 06:10:06 +0000</pubDate>
		<dc:creator>Adam McKerlie</dc:creator>
		
		<category><![CDATA[Data structures]]></category>

		<guid isPermaLink="false">http://easyctutorials.com/arrays-vs-linkedlists/</guid>
		<description><![CDATA[Do you know the difference between Arrays and Linked Lists?  Here you'll find the difference and when to use each other.]]></description>
			<content:encoded><![CDATA[<p>I honestly can&#8217;t recall the number of times I&#8217;ve been asked what the difference was between arrays and linked lists.  There&#8217;s been countless times when people have come up to me and asked &#8220;When should I use arrays and when should I use linked lists?&#8221;  Since I&#8217;m getting tired of answering this so many times I felt I should write down my answer here <img src='http://easyctutorials.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /><br />
 <a href="http://easyctutorials.com/arrays-vs-linkedlists/#more-9" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/EasyCTutorials/~4/bkOHaGU9VhE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://easyctutorials.com/arrays-vs-linkedlists/feed/</wfw:commentRss>
		<feedburner:origLink>http://easyctutorials.com/arrays-vs-linkedlists/</feedburner:origLink></item>
	</channel>
</rss>
