<?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>CodingUnit Programming Tutorials</title>
	<atom:link href="http://www.codingunit.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codingunit.com</link>
	<description>CodingUnit is your online resource for learning to program. Tutorials on C, C++, PHP, Python, MySQL, Java, JQuery, Opengl, DirectX and much more!</description>
	<lastBuildDate>Sat, 12 May 2012 19:37:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Checking for Palindrome Strings or Numbers in C Language</title>
		<link>http://www.codingunit.com/checking-for-palindrome-strings-or-numbers-in-c-language</link>
		<comments>http://www.codingunit.com/checking-for-palindrome-strings-or-numbers-in-c-language#comments</comments>
		<pubDate>Wed, 18 Apr 2012 14:00:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Algorithms]]></category>
		<category><![CDATA[C Source]]></category>
		<category><![CDATA[C tutorial]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1261</guid>
		<description><![CDATA[In this programming algorithm tutorial we will look at how to find out if a string or number is a palindrome or not. A palindrome is a word, phrase, number or other sequence of units that has the property of reading the same in either direction. A few examples of palindrome strings are: “madam”, “dad” [...]<p><a href="http://www.codingunit.com/checking-for-palindrome-strings-or-numbers-in-c-language">Checking for Palindrome Strings or Numbers in C Language</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/checking-for-palindrome-strings-or-numbers-in-c-language/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Linear Search Algorithm in C Language</title>
		<link>http://www.codingunit.com/linear-search-algorithm-in-c-language</link>
		<comments>http://www.codingunit.com/linear-search-algorithm-in-c-language#comments</comments>
		<pubDate>Tue, 17 Apr 2012 19:44:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Algorithms]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>
		<category><![CDATA[C tutorial]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1255</guid>
		<description><![CDATA[In this programming algorithm tutorial we will at how we can do a linear search in C language. A linear search algorithm using numbers is very easy to implement. Take a look at the following source code: #include &#60;stdio.h&#62; int main() { int a[100]; int counter, num, numsearch; int boolnum = 0; printf("Enter the number [...]<p><a href="http://www.codingunit.com/linear-search-algorithm-in-c-language">Linear Search Algorithm in C Language</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/linear-search-algorithm-in-c-language/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Determining the Area of Different Shaped Triangles in C</title>
		<link>http://www.codingunit.com/determining-the-area-of-different-shaped-triangles-in-c</link>
		<comments>http://www.codingunit.com/determining-the-area-of-different-shaped-triangles-in-c#comments</comments>
		<pubDate>Tue, 17 Apr 2012 19:26:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Algorithms]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>
		<category><![CDATA[C tutorial]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1250</guid>
		<description><![CDATA[In this C programming algorithm tutorial we are looking at how to implement the mathematical formulas to determine area of different shaped triangles. We will look at the triangle, right angled triangle and equilateral triangle. We will give you the formula, the C source code and the results. Area of a Right Angled Triangle The [...]<p><a href="http://www.codingunit.com/determining-the-area-of-different-shaped-triangles-in-c">Determining the Area of Different Shaped Triangles in C</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/determining-the-area-of-different-shaped-triangles-in-c/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Area of a Rectangle Circle and Trapezium in C</title>
		<link>http://www.codingunit.com/area-of-a-rectangle-circle-and-trapezium-in-c</link>
		<comments>http://www.codingunit.com/area-of-a-rectangle-circle-and-trapezium-in-c#comments</comments>
		<pubDate>Tue, 17 Apr 2012 19:03:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Algorithms]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>
		<category><![CDATA[C tutorial]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1242</guid>
		<description><![CDATA[In this C programming algorithm tutorial we are looking at how to implement the mathematical formulas to determine area of a rectangle, circle and trapezium. We will give you the formula, the C source code and the results. Area of a Rectangle The mathematical formula to determine the area of a rectangle is: area = [...]<p><a href="http://www.codingunit.com/area-of-a-rectangle-circle-and-trapezium-in-c">Area of a Rectangle Circle and Trapezium in C</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/area-of-a-rectangle-circle-and-trapezium-in-c/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Print Floyds Triangle in C</title>
		<link>http://www.codingunit.com/how-to-print-floyds-triangle-in-c</link>
		<comments>http://www.codingunit.com/how-to-print-floyds-triangle-in-c#comments</comments>
		<pubDate>Sun, 08 Apr 2012 19:03:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Algorithms]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>
		<category><![CDATA[C Source]]></category>
		<category><![CDATA[C tutorial]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1238</guid>
		<description><![CDATA[In this tutorial we will take a quick look at the Floyd&#8217;s triangle using the C language. The Floyd&#8217;s triangle (named after Robert Floyd) algorithm is a right-angled triangular array of natural numbers. It is defined by filling the rows of the triangle with consecutive numbers, starting with the number one in the top left [...]<p><a href="http://www.codingunit.com/how-to-print-floyds-triangle-in-c">How to Print Floyds Triangle in C</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/how-to-print-floyds-triangle-in-c/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Printing a Diamond Pattern in C</title>
		<link>http://www.codingunit.com/printing-a-diamond-pattern-in-c</link>
		<comments>http://www.codingunit.com/printing-a-diamond-pattern-in-c#comments</comments>
		<pubDate>Sun, 08 Apr 2012 18:11:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Algorithms]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>
		<category><![CDATA[C Source]]></category>
		<category><![CDATA[C tutorial]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1234</guid>
		<description><![CDATA[In this tutorial we are looking at how to print a diamond pattern using the C language. The diamond pattern algorithm question is often used in C courses, so it make sense that we also take a look at it. Take a look at the diamond pattern C source code: #include &#60;stdio.h&#62; int main() { [...]<p><a href="http://www.codingunit.com/printing-a-diamond-pattern-in-c">Printing a Diamond Pattern in C</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/printing-a-diamond-pattern-in-c/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Tutorial – File Handling</title>
		<link>http://www.codingunit.com/php-tutorial-file-handling</link>
		<comments>http://www.codingunit.com/php-tutorial-file-handling#comments</comments>
		<pubDate>Thu, 03 Nov 2011 08:00:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[PHP Language Tutorial]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web programming]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1225</guid>
		<description><![CDATA[In this PHP web-programming language we will take a look at file handling. We will take a look at how to open en close a file, how to read a file line by line and how to read a file character by character. File Opening Modes Before we look how to open a file in [...]<p><a href="http://www.codingunit.com/php-tutorial-file-handling">PHP Tutorial – File Handling</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/php-tutorial-file-handling/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>C Tutorial – A Star pyramid and String triangle using for loops</title>
		<link>http://www.codingunit.com/c-tutorial-a-star-pyramid-and-string-triangle-using-for-loops</link>
		<comments>http://www.codingunit.com/c-tutorial-a-star-pyramid-and-string-triangle-using-for-loops#comments</comments>
		<pubDate>Tue, 01 Nov 2011 20:38:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Tutorials]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>
		<category><![CDATA[C Source]]></category>
		<category><![CDATA[C tutorial]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1216</guid>
		<description><![CDATA[In this C language tutorial we will look at a much-requested subject, printing a star pyramid and a string triangle using for loops. We know that this question is often asked as part of homework (lab) assignments, but we got so much requests that we couldn’t ignore it. BUT we are urging you to at [...]<p><a href="http://www.codingunit.com/c-tutorial-a-star-pyramid-and-string-triangle-using-for-loops">C Tutorial – A Star pyramid and String triangle using for loops</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-tutorial-a-star-pyramid-and-string-triangle-using-for-loops/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Tutorial &#8211; Number of Seconds in Decade and Visa-Versa</title>
		<link>http://www.codingunit.com/c-tutorial-number-of-seconds-in-decade-and-visaversa</link>
		<comments>http://www.codingunit.com/c-tutorial-number-of-seconds-in-decade-and-visaversa#comments</comments>
		<pubDate>Fri, 11 Feb 2011 20:26:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Tutorials]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>
		<category><![CDATA[C Source]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1195</guid>
		<description><![CDATA[In a previous C language tutorial post the user &#8220;nikko manlangit&#8221; asked the following question: “How to convert seconds to decade or vice-versa?”. This C tutorial make use of time.h functions to answer his question. Short Answer It all depends on how accurate you want to calculate the numbers? You can calculate with the following [...]<p><a href="http://www.codingunit.com/c-tutorial-number-of-seconds-in-decade-and-visaversa">C Tutorial &#8211; Number of Seconds in Decade and Visa-Versa</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-tutorial-number-of-seconds-in-decade-and-visaversa/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C++ Binary Operator Overloading Greater or Less than</title>
		<link>http://www.codingunit.com/cplusplus-binary-operator-overloading-greater-or-less-than</link>
		<comments>http://www.codingunit.com/cplusplus-binary-operator-overloading-greater-or-less-than#comments</comments>
		<pubDate>Sun, 05 Dec 2010 21:03:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C++ Tutorials]]></category>
		<category><![CDATA[C++ Language Tutorial]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1189</guid>
		<description><![CDATA[In a previous c++ language tutorial we looked at C++ overloading of binary operators. In the comment section of this tutorial the user &#8216;prince&#8217; asked for a binary operator overloading example of < (less than) and > greater than. This tutorial is the answer to his question. Unary or Binary Operator First let&#8217;s find out [...]<p><a href="http://www.codingunit.com/cplusplus-binary-operator-overloading-greater-or-less-than">C++ Binary Operator Overloading Greater or Less than</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/cplusplus-binary-operator-overloading-greater-or-less-than/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

