<?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 &#187; Programming Tips</title>
	<atom:link href="http://www.codingunit.com/category/programming-tips/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>Thu, 29 Jul 2010 15:49:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Did you know..? C and C++ Tips 5</title>
		<link>http://www.codingunit.com/c-and-cplusplus-tips-5</link>
		<comments>http://www.codingunit.com/c-and-cplusplus-tips-5#comments</comments>
		<pubDate>Tue, 21 Jul 2009 11:20:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Tips]]></category>
		<category><![CDATA[Small Programming Tips]]></category>

		<guid isPermaLink="false">http://localhost/?p=94</guid>
		<description><![CDATA[In this episode of Did you know&#8230;? we take another look at some common coding mistakes. Undeclared Functions Extra Semicolons Undeclared Functions Many beginning programmers make the mistake of not declaring function. Take the following example: int main() { my_function(); } void my_function() { //some code } A compiler walks the program from the top [...]<p><a href="http://www.codingunit.com/c-and-cplusplus-tips-5">Did you know..? C and C++ Tips 5</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-and-cplusplus-tips-5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Did you know..? C and C++ Tips 4</title>
		<link>http://www.codingunit.com/c-and-cplusplus-tips-4</link>
		<comments>http://www.codingunit.com/c-and-cplusplus-tips-4#comments</comments>
		<pubDate>Tue, 21 Jul 2009 11:13:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Tips]]></category>
		<category><![CDATA[Small Programming Tips]]></category>

		<guid isPermaLink="false">http://localhost/?p=88</guid>
		<description><![CDATA[In this episode of Did you know&#8230;? we look at some common coding mistakes. Undeclared Variables Uninitialized Variables Setting a variable to an uninitialized value Single equal sign to check equality Undeclared Variables Every programmer knows that you need to declare a variable before it is used, but many beginners forget to do this. Take [...]<p><a href="http://www.codingunit.com/c-and-cplusplus-tips-4">Did you know..? C and C++ Tips 4</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-and-cplusplus-tips-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Did you know..? C Programming Language Tips 3</title>
		<link>http://www.codingunit.com/did-you-know-c-programming-language-tips-3</link>
		<comments>http://www.codingunit.com/did-you-know-c-programming-language-tips-3#comments</comments>
		<pubDate>Tue, 21 Jul 2009 11:05:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Tips]]></category>
		<category><![CDATA[Small Programming Tips]]></category>

		<guid isPermaLink="false">http://localhost/?p=86</guid>
		<description><![CDATA[In this episode of &#8220;Did you know..?&#8221; we take another look at some C language tips. gets() function and strings Null terminating strings No break in switch statements == and strings gets() function and strings Don&#39;t use gets. gets() read a whole line of input into a string until a newline or EOF is encountered. [...]<p><a href="http://www.codingunit.com/did-you-know-c-programming-language-tips-3">Did you know..? C Programming Language Tips 3</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/did-you-know-c-programming-language-tips-3/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Did you know..? C Programming Language Tips 2</title>
		<link>http://www.codingunit.com/did-you-know-c-programming-language-tips-2</link>
		<comments>http://www.codingunit.com/did-you-know-c-programming-language-tips-2#comments</comments>
		<pubDate>Tue, 21 Jul 2009 11:02:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Tips]]></category>
		<category><![CDATA[Small Programming Tips]]></category>

		<guid isPermaLink="false">http://localhost/?p=84</guid>
		<description><![CDATA[In this episode of &#8220;Did you know..?&#8221; we take another look at some C language tips. Character and string constants Prototypes Not initializing pointers Wrong loops Character and string constants The C language considers character and string constants as very different things. Character constants should be enclosed in single quotes. Mixing them up will result [...]<p><a href="http://www.codingunit.com/did-you-know-c-programming-language-tips-2">Did you know..? C Programming Language Tips 2</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/did-you-know-c-programming-language-tips-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Did you know..? C Programming Language Tips 1</title>
		<link>http://www.codingunit.com/c-programming-language-tips-1</link>
		<comments>http://www.codingunit.com/c-programming-language-tips-1#comments</comments>
		<pubDate>Tue, 21 Jul 2009 10:52:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Tips]]></category>
		<category><![CDATA[Small Programming Tips]]></category>

		<guid isPermaLink="false">http://localhost/?p=78</guid>
		<description><![CDATA[In this episode of &#8220;Did you know..?&#8221; we look at some C language tips. scanf() wrong format for an operand Array size and starting index Wrong use: = instead of == scanf() forgetting the ampersand (&#38;) scanf() wrong format for an operand C compilers do not check for format errors of arguments from a scanf() [...]<p><a href="http://www.codingunit.com/c-programming-language-tips-1">Did you know..? C Programming Language Tips 1</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-programming-language-tips-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
