<?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>Beginner Developer&#039;s Blog</title>
	<atom:link href="http://beginnerdeveloper.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://beginnerdeveloper.wordpress.com</link>
	<description>Just another WordPress.com site</description>
	<lastBuildDate>Fri, 22 Jul 2011 05:18:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='beginnerdeveloper.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Beginner Developer&#039;s Blog</title>
		<link>http://beginnerdeveloper.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://beginnerdeveloper.wordpress.com/osd.xml" title="Beginner Developer&#039;s Blog" />
	<atom:link rel='hub' href='http://beginnerdeveloper.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Bubble Sort Program</title>
		<link>http://beginnerdeveloper.wordpress.com/2011/07/22/bubble-sort-program/</link>
		<comments>http://beginnerdeveloper.wordpress.com/2011/07/22/bubble-sort-program/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 05:18:40 +0000</pubDate>
		<dc:creator>beginnerdeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beginnerdeveloper.wordpress.com/?p=46</guid>
		<description><![CDATA[Here is a program that demostrates a bubble sort: &#160; #include &#60;iostream&#62; using namespace std; void printArray(int *array, int length); void bubbleSort(int *array, int length); int main() { int array[] = {9,6,5,23,2,6,2,7,1,8}; bubbleSort(array, 10); printArray(array, 10); } void printArray(int *array, int length) { int i = 0; for(i =0; i &#60; length; i++) cout &#60;&#60; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beginnerdeveloper.wordpress.com&#038;blog=17269788&#038;post=46&#038;subd=beginnerdeveloper&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Here is a program that demostrates a bubble sort:</p>
<p>&nbsp;</p>
<pre>#include &lt;iostream&gt;


using namespace std;

void printArray(int *array, int length);
void bubbleSort(int *array, int length);

int main()
{
  int array[] = {9,6,5,23,2,6,2,7,1,8};
  bubbleSort(array, 10);
  printArray(array, 10);
}

void printArray(int *array, int length)
{
  int i = 0;
  for(i =0; i &lt; length; i++)
    cout &lt;&lt; array[i] &lt;&lt; endl;
}

void bubbleSort(int *array, int length)
{
  int i, j;
  for(i = 0; i &lt; length; i++)
    {
      for(j = 0; j &lt; i; j++)
	{
	  if(array[i] &gt; array[j])
	    {
	      int temp = array[i];
	      array[i] = array[j];
	      array[j] = temp;
	    }
	}
    }
}</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beginnerdeveloper.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beginnerdeveloper.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beginnerdeveloper.wordpress.com&#038;blog=17269788&#038;post=46&#038;subd=beginnerdeveloper&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beginnerdeveloper.wordpress.com/2011/07/22/bubble-sort-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/155cb3b4977339d522f0a5e593cb070f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beginnerdeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Questions</title>
		<link>http://beginnerdeveloper.wordpress.com/2011/07/16/questions/</link>
		<comments>http://beginnerdeveloper.wordpress.com/2011/07/16/questions/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 21:15:19 +0000</pubDate>
		<dc:creator>beginnerdeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beginnerdeveloper.wordpress.com/?p=43</guid>
		<description><![CDATA[If there are any functions or algorithms you would like to see here&#8230;either comment or send us an email.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beginnerdeveloper.wordpress.com&#038;blog=17269788&#038;post=43&#038;subd=beginnerdeveloper&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>If there are any functions or algorithms you would like to see here&#8230;either comment or send us an email.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beginnerdeveloper.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beginnerdeveloper.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beginnerdeveloper.wordpress.com&#038;blog=17269788&#038;post=43&#038;subd=beginnerdeveloper&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beginnerdeveloper.wordpress.com/2011/07/16/questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/155cb3b4977339d522f0a5e593cb070f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beginnerdeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple I/O Example</title>
		<link>http://beginnerdeveloper.wordpress.com/2010/11/13/38/</link>
		<comments>http://beginnerdeveloper.wordpress.com/2010/11/13/38/#comments</comments>
		<pubDate>Sat, 13 Nov 2010 21:08:57 +0000</pubDate>
		<dc:creator>beginnerdeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beginnerdeveloper.wordpress.com/?p=38</guid>
		<description><![CDATA[Here is a program to output a text file out one word per line.  NOTE:   you must put your text file in the same directory as your .cpp files for this to work. #include &#60;iostream&#62; #include &#60;string&#62; #include &#60;fstream&#62; using namespace std; int main(void) { string fileName; string wordBuffer; ifstream file; cout &#60;&#60; &#8220;Please enter [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beginnerdeveloper.wordpress.com&#038;blog=17269788&#038;post=38&#038;subd=beginnerdeveloper&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Here is a program to output a text file out one word per line.  NOTE:   you must put your text file in the same directory as your .cpp files for this to work.</p>
<p><span style="color:#ff0000;">#include &lt;iostream&gt;</span><br />
<span style="color:#ff0000;">#include &lt;string&gt;</span><br />
<span style="color:#ff0000;">#include &lt;fstream&gt;</span></p>
<p><span style="color:#ff0000;">using namespace std;</span></p>
<p><span style="color:#ff0000;">int main(void)</span><br />
<span style="color:#ff0000;">{</span><br />
<span style="color:#ff0000;"> string fileName;</span><br />
<span style="color:#ff0000;"> string wordBuffer;</span><br />
<span style="color:#ff0000;"> ifstream file;</span></p>
<p><span style="color:#ff0000;"> cout &lt;&lt; &#8220;Please enter the file name to read: &#8221; &lt;&lt; endl;</span><br />
<span style="color:#ff0000;"> cin &gt;&gt; fileName;</span></p>
<p><span style="color:#ff0000;"> cout &lt;&lt; &#8220;Start of file&#8221; &lt;&lt; endl;</span></p>
<p><span style="color:#ff0000;"> file.open(fileName.c_str());</span><br />
<span style="color:#ff0000;"> if(! file.is_open()) {</span><br />
<span style="color:#ff0000;"> cerr &lt;&lt; &#8220;Error opening file: &#8221; &lt;&lt; fileName &lt;&lt; endl;</span><br />
<span style="color:#ff0000;"> exit(1);</span><br />
<span style="color:#ff0000;"> }</span></p>
<p><span style="color:#ff0000;"> while(! file.eof() )</span><br />
<span style="color:#ff0000;"> {</span><br />
<span style="color:#ff0000;"> file &gt;&gt; wordBuffer;</span><br />
<span style="color:#ff0000;"> cout &lt;&lt; wordBuffer &lt;&lt; endl;</span><br />
<span style="color:#ff0000;"> }</span></p>
<p><span style="color:#ff0000;"> cout &lt;&lt; &#8220;End of file&#8221; &lt;&lt; endl;</span></p>
<p><span style="color:#ff0000;"> system(&#8220;pause&#8221;);</span></p>
<p><span style="color:#ff0000;"> return 0;</span></p>
<p><span style="color:#ff0000;">}</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beginnerdeveloper.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beginnerdeveloper.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beginnerdeveloper.wordpress.com&#038;blog=17269788&#038;post=38&#038;subd=beginnerdeveloper&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beginnerdeveloper.wordpress.com/2010/11/13/38/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/155cb3b4977339d522f0a5e593cb070f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beginnerdeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Recursive Sum Example</title>
		<link>http://beginnerdeveloper.wordpress.com/2010/11/01/recusive-sum-example/</link>
		<comments>http://beginnerdeveloper.wordpress.com/2010/11/01/recusive-sum-example/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 06:12:14 +0000</pubDate>
		<dc:creator>beginnerdeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beginnerdeveloper.wordpress.com/?p=26</guid>
		<description><![CDATA[Here is a recursive function that takes a number inputted by the user and find the sum of all numbers from 1 to that number: #include &#60;iostream&#62; using namespace std; int recursion(int num); int main(){ int num = 0; int sumNum; cout &#60;&#60; &#8220;Enter any integer greater than 0: &#8221; &#60;&#60; endl; cin &#62;&#62; num; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beginnerdeveloper.wordpress.com&#038;blog=17269788&#038;post=26&#038;subd=beginnerdeveloper&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Here is a recursive function that takes a number inputted by the user and find the sum of all numbers from 1 to that number:</p>
<p><span style="color:#ff0000;">#include &lt;iostream&gt;</span><br />
<span style="color:#ff0000;">using namespace std;</span></p>
<p><span style="color:#ff0000;">int recursion(int num);</span></p>
<p><span style="color:#ff0000;">int main(){</span></p>
<p><span style="color:#ff0000;"> int num = 0;</span><br />
<span style="color:#ff0000;"> int sumNum;</span></p>
<p><span style="color:#ff0000;"> cout &lt;&lt; &#8220;Enter any integer greater than 0: &#8221; &lt;&lt; endl;</span><br />
<span style="color:#ff0000;"> cin &gt;&gt; num;</span></p>
<p><span style="color:#ff0000;"> sumNum = recursion(num);</span><br />
<span style="color:#ff0000;"> cout &lt;&lt; &#8220;The sum is: &#8221; &lt;&lt; sumNum &lt;&lt; endl;</span><br />
<span style="color:#ff0000;"> cin.ignore();</span><br />
<span style="color:#ff0000;"> cin.get();</span></p>
<p><span style="color:#ff0000;"> return 0;</span><br />
<span style="color:#ff0000;">}</span></p>
<p><span style="color:#ff0000;"> int recursion(int num)</span><br />
<span style="color:#ff0000;">{</span><br />
<span style="color:#ff0000;"> int sum = 0;</span><br />
<span style="color:#ff0000;"> if(num == 1){</span><br />
<span style="color:#ff0000;"> return 1;</span><br />
<span style="color:#ff0000;"> }</span><br />
<span style="color:#ff0000;"> else{</span><br />
<span style="color:#ff0000;"> sum = recursion(num-1) + num;</span><br />
<span style="color:#ff0000;"> return sum;</span><br />
<span style="color:#ff0000;"> }</span></p>
<p><span style="color:#ff0000;">}</span></p>
<p>Happy coding!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beginnerdeveloper.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beginnerdeveloper.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beginnerdeveloper.wordpress.com&#038;blog=17269788&#038;post=26&#038;subd=beginnerdeveloper&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beginnerdeveloper.wordpress.com/2010/11/01/recusive-sum-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/155cb3b4977339d522f0a5e593cb070f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beginnerdeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello World Code</title>
		<link>http://beginnerdeveloper.wordpress.com/2010/10/31/hello-world-code/</link>
		<comments>http://beginnerdeveloper.wordpress.com/2010/10/31/hello-world-code/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 04:40:25 +0000</pubDate>
		<dc:creator>beginnerdeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://beginnerdeveloper.wordpress.com/?p=10</guid>
		<description><![CDATA[How&#8217;s it going.  I figured with the introduction of our blog&#8230;I&#8217;d throw in some simple code for the coveted &#8220;Hello World Program&#8220;: #include &#60;iostream&#62; using namespace std; int main(void){ cout &#60;&#60; "Hello World" &#60;&#60; endl; return 0; } If anyone wants to throw down the java, C#, perl, or any other languages code for a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beginnerdeveloper.wordpress.com&#038;blog=17269788&#038;post=10&#038;subd=beginnerdeveloper&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>How&#8217;s it going.  I figured with the introduction of our blog&#8230;I&#8217;d throw in some simple code for the coveted &#8220;<a class="zem_slink" title="Hello world program" rel="wikipedia" href="http://en.wikipedia.org/wiki/Hello_world_program">Hello World Program</a>&#8220;:</p>
<pre><span style="color:#ff0000;">#include &lt;iostream&gt;</span>
<span style="color:#ff0000;">using namespace std;</span></pre>
<pre><span style="color:#ff0000;">int main(void){</span>
<span style="color:#ff0000;"> cout &lt;&lt; "Hello World" &lt;&lt; endl;</span>
<span style="color:#ff0000;"> return 0;</span>
<span style="color:#ff0000;">}</span></pre>
<p><span style="color:#ff0000;"><span style="color:#000000;">If anyone wants to throw down the java, C#, perl, or any other languages code for a simple Hello World please feel free!</span><em><br />
</em></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beginnerdeveloper.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beginnerdeveloper.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beginnerdeveloper.wordpress.com&#038;blog=17269788&#038;post=10&#038;subd=beginnerdeveloper&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beginnerdeveloper.wordpress.com/2010/10/31/hello-world-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/155cb3b4977339d522f0a5e593cb070f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beginnerdeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Welcome to the Beginner Developer&#8217;s Blog</title>
		<link>http://beginnerdeveloper.wordpress.com/2010/10/30/welcome-to-the-beginner-developers-blog/</link>
		<comments>http://beginnerdeveloper.wordpress.com/2010/10/30/welcome-to-the-beginner-developers-blog/#comments</comments>
		<pubDate>Sat, 30 Oct 2010 17:03:05 +0000</pubDate>
		<dc:creator>beginnerdeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[Companies]]></category>
		<category><![CDATA[Computer programming]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Embedded system]]></category>
		<category><![CDATA[FAQs Help and Tutorials]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://beginnerdeveloper.wordpress.com/?p=5</guid>
		<description><![CDATA[Welcome to the Beginner Developer&#8217;s Blog.  This is a blog where we will share programming types, code, and tutorials with those who are just starting out in programming. I had a rough time with some of my professors when first in college so I thought I would create something that allowed other people to get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beginnerdeveloper.wordpress.com&#038;blog=17269788&#038;post=5&#038;subd=beginnerdeveloper&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Welcome to the Beginner Developer&#8217;s Blog.  This is a blog where we will share <a class="zem_slink" title="Computer programming" rel="wikipedia" href="http://en.wikipedia.org/wiki/Computer_programming">programming</a> types, code, and tutorials with those who are just starting out in programming.</p>
<p>I had a rough time with some of my <a class="zem_slink" title="Professor" rel="wikipedia" href="http://en.wikipedia.org/wiki/Professor">professors</a> when first in college so I thought I would create something that allowed other people to get going quickly.  Many of the tricks in programming has to be shown to you (unless your some kind of genius) and it sucks when professors or whomever doesn&#8217;t wanna share the knowledge.</p>
<p>So stay tuned I will throw up some links and possible some youTube vids soon.</p>
<p>Please subscribe and share with everyone!</p>
<h6>
<a class="zem_slink" title="Embedded system" rel="wikipedia" href="http://en.wikipedia.org/wiki/Embedded_system"></a></h6>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beginnerdeveloper.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beginnerdeveloper.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beginnerdeveloper.wordpress.com&#038;blog=17269788&#038;post=5&#038;subd=beginnerdeveloper&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beginnerdeveloper.wordpress.com/2010/10/30/welcome-to-the-beginner-developers-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/155cb3b4977339d522f0a5e593cb070f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beginnerdeveloper</media:title>
		</media:content>
	</item>
	</channel>
</rss>
