<?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, 14 Jan 2012 19:59:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<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>0</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>3</slash:comments>
		</item>
		<item>
		<title>PHP Tutorial – include and require</title>
		<link>http://www.codingunit.com/php-tutorial-%e2%80%93-include-and-require</link>
		<comments>http://www.codingunit.com/php-tutorial-%e2%80%93-include-and-require#comments</comments>
		<pubDate>Mon, 25 Oct 2010 20:40:02 +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=1185</guid>
		<description><![CDATA[In this PHP language tutorial we will take a look at server side includes (SSI). We will look at include(), require() and require_once() functions. These functions can be used to insert content of one PHP file into another PHP file (on the server side) before the server will execute the file. You can see that [...]<p><a href="http://www.codingunit.com/php-tutorial-%e2%80%93-include-and-require">PHP Tutorial – include and require</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-%e2%80%93-include-and-require/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rewrite of one C++ Tutorial</title>
		<link>http://www.codingunit.com/rewrite-of-one-c-tutorial</link>
		<comments>http://www.codingunit.com/rewrite-of-one-c-tutorial#comments</comments>
		<pubDate>Tue, 22 Jun 2010 21:15:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website News]]></category>
		<category><![CDATA[C++ Language Tutorial]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1070</guid>
		<description><![CDATA[After a comment of a visitor on the C++ Unary and binary operator overloading and static members we did a complete rewrite of the page, because there where some minor errors. The new tutorial is much better in our opinion and it has more examples + you can download the large examples. So don&#8217;t forget [...]<p><a href="http://www.codingunit.com/rewrite-of-one-c-tutorial">Rewrite of one C++ Tutorial</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/rewrite-of-one-c-tutorial/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unary and Binary Operator Table</title>
		<link>http://www.codingunit.com/unary-and-binary-operator-table</link>
		<comments>http://www.codingunit.com/unary-and-binary-operator-table#comments</comments>
		<pubDate>Tue, 22 Jun 2010 20:51:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Language Reference]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>
		<category><![CDATA[C Source]]></category>
		<category><![CDATA[C++ Language Tutorial]]></category>
		<category><![CDATA[operators]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1064</guid>
		<description><![CDATA[Below you&#8217;ll find all the unary and binary operators in one easy table: Operator Name Type ! Logical NOT Unary &#38; Address-of Unary ( ) Cast Operator Unary * Pointer dereference Unary + Unary Plus Unary ++ Increment Unary – Unary negation Unary –– Decrement 1 Unary ~ complement Unary , Comma Binary != Inequality [...]<p><a href="http://www.codingunit.com/unary-and-binary-operator-table">Unary and Binary Operator Table</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/unary-and-binary-operator-table/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>C Tutorial &#8211; Searching for Strings in a Text File</title>
		<link>http://www.codingunit.com/c-tutorial-searching-for-strings-in-a-text-file</link>
		<comments>http://www.codingunit.com/c-tutorial-searching-for-strings-in-a-text-file#comments</comments>
		<pubDate>Wed, 12 May 2010 06:00:16 +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=1038</guid>
		<description><![CDATA[In this C language tutorial we will show you how to search for a string in a text files. We will make use of command-line input, fopen or fopen_c and system to clear the screen. Make sure that you have read and understand the following tutorial C tutorial File I/O using Text Files before you [...]<p><a href="http://www.codingunit.com/c-tutorial-searching-for-strings-in-a-text-file">C Tutorial &#8211; Searching for Strings in a Text File</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-searching-for-strings-in-a-text-file/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>C Reference  String Operation: strstr()</title>
		<link>http://www.codingunit.com/c-reference-string-h-string-operation-strstr</link>
		<comments>http://www.codingunit.com/c-reference-string-h-string-operation-strstr#comments</comments>
		<pubDate>Tue, 11 May 2010 20:53:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference string.h Functions]]></category>
		<category><![CDATA[C Language Reference]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1031</guid>
		<description><![CDATA[The function strstr() returns a pointer to the first occurrence of x in a string. It is also know as searching for a sub-string in a string. Usage: char * strstr ( const char *, const char * ); char * strstr ( char * str1, const char * str2 ); Return Value A pointer [...]<p><a href="http://www.codingunit.com/c-reference-string-h-string-operation-strstr">C Reference <string.h> String Operation: strstr()</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-reference-string-h-string-operation-strstr/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move from NextDawn.nl to CodingUnit.com is done!</title>
		<link>http://www.codingunit.com/move-from-nextdawn-nl-to-codingunit-com-is-done</link>
		<comments>http://www.codingunit.com/move-from-nextdawn-nl-to-codingunit-com-is-done#comments</comments>
		<pubDate>Wed, 28 Apr 2010 15:18:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website News]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=1026</guid>
		<description><![CDATA[The moving from website NextDawn.nl to CodingUnit.com is done! All pages from nextdawn.nl will now redirect 301 to this site. So please change your bookmarks and links in your website(s)! From all the URL&#8217;s, only the first part will change, everything else will stay the same. For example: http://www.nextdawn.nl/category/c-tutorials will become http://www.codingunit.com/category/c-tutorials and so on. [...]<p><a href="http://www.codingunit.com/move-from-nextdawn-nl-to-codingunit-com-is-done">Move from NextDawn.nl to CodingUnit.com is done!</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/move-from-nextdawn-nl-to-codingunit-com-is-done/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

