<?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; C Language Reference</title>
	<atom:link href="http://www.codingunit.com/category/c-language-reference/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>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>0</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>C Reference  function clock()</title>
		<link>http://www.codingunit.com/c-reference-time-h-function-clock</link>
		<comments>http://www.codingunit.com/c-reference-time-h-function-clock#comments</comments>
		<pubDate>Thu, 23 Jul 2009 12:19:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference time.h Functions]]></category>
		<category><![CDATA[C Language Reference]]></category>

		<guid isPermaLink="false">http://localhost/?p=469</guid>
		<description><![CDATA[Usage of clock(): clock_t clock ( void ); Parameters: None. Return Value: The number of clock ticks elapsed since the program start. If the function fails then it will return a value of -1. The clock_t type is defined in ctime.h. Explanation: The function returns the number of clock ticks elapsed since the start of [...]<p><a href="http://www.codingunit.com/c-reference-time-h-function-clock">C Reference <time.h> function clock()</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-time-h-function-clock/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Reference  function difftime()</title>
		<link>http://www.codingunit.com/c-reference-time-h-function-difftime</link>
		<comments>http://www.codingunit.com/c-reference-time-h-function-difftime#comments</comments>
		<pubDate>Thu, 23 Jul 2009 12:18:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference time.h Functions]]></category>
		<category><![CDATA[C Language Reference]]></category>

		<guid isPermaLink="false">http://localhost/?p=467</guid>
		<description><![CDATA[Usage of difftime(): double difftime ( time_t time2, time_t time1 ); Parameters: Time1 and time2 are both time_t objects. Return Value: The difference in seconds between time2-time1 will be returned as a floating point double. Explanation: Calculates the difference in seconds between time1 and time2. Source code example of difftime(): #include &#60;stdio.h&#62; #include &#60;time.h&#62; int [...]<p><a href="http://www.codingunit.com/c-reference-time-h-function-difftime">C Reference <time.h> function difftime()</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-time-h-function-difftime/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Reference  macro NULL</title>
		<link>http://www.codingunit.com/c-reference-time-h-macro-null-2</link>
		<comments>http://www.codingunit.com/c-reference-time-h-macro-null-2#comments</comments>
		<pubDate>Thu, 23 Jul 2009 12:15:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference time.h Functions]]></category>
		<category><![CDATA[C Language Reference]]></category>

		<guid isPermaLink="false">http://localhost/?p=465</guid>
		<description><![CDATA[The null pointer macro (NULL) is generally used to signify that a pointer does not point to a object. C Reference macro NULL is a post from: CodingUnit Programming Tutorials<p><a href="http://www.codingunit.com/c-reference-time-h-macro-null-2">C Reference <time.h> macro NULL</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-time-h-macro-null-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Reference  function mktime()</title>
		<link>http://www.codingunit.com/c-reference-time-h-function-mktime</link>
		<comments>http://www.codingunit.com/c-reference-time-h-function-mktime#comments</comments>
		<pubDate>Thu, 23 Jul 2009 12:13:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference time.h Functions]]></category>
		<category><![CDATA[C Language Reference]]></category>

		<guid isPermaLink="false">http://localhost/?p=463</guid>
		<description><![CDATA[Usage of mktime(): time_t mktime ( struct tm * ptr_time ); Parameters: The pointer ptr_time points to a tm structure that contains a calendar time, which in turn is broken down into its components. Return Value: A time_t value corresponding to the calendar time passed as argument. If an error occurs then the function mktime() [...]<p><a href="http://www.codingunit.com/c-reference-time-h-function-mktime">C Reference <time.h> function mktime()</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-time-h-function-mktime/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Reference  function time()</title>
		<link>http://www.codingunit.com/c-reference-time-h-function-time</link>
		<comments>http://www.codingunit.com/c-reference-time-h-function-time#comments</comments>
		<pubDate>Thu, 23 Jul 2009 12:12:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference time.h Functions]]></category>
		<category><![CDATA[C Language Reference]]></category>

		<guid isPermaLink="false">http://localhost/?p=461</guid>
		<description><![CDATA[Usage of time(): time_t time ( time_t * ptr_time ); Parameters: ptr_time is a pointer to an object of type time_t. In this object the time value is stored. It is also allowed to fill in a null pointer, but the a time_t object is still returned by the function time(). Return Value: The current [...]<p><a href="http://www.codingunit.com/c-reference-time-h-function-time">C Reference <time.h> function time()</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-time-h-function-time/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(ANSI) C Reference &#8211; Control the Flow</title>
		<link>http://www.codingunit.com/ansi-c-reference-control-the-flow</link>
		<comments>http://www.codingunit.com/ansi-c-reference-control-the-flow#comments</comments>
		<pubDate>Thu, 23 Jul 2009 12:08:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Control the Flow of a Program]]></category>

		<guid isPermaLink="false">http://localhost/?p=457</guid>
		<description><![CDATA[A look at with which commands you can alter the flow of a C program. You could also take a look at the C If &#8211; Switch statement tutorial. You could also take a look at the C Loops tutorial. { } &#8211;&#62;  Block delimiters ; &#8211;&#62;  Statement terminator break &#8211;&#62;  Exit from switch, while, [...]<p><a href="http://www.codingunit.com/ansi-c-reference-control-the-flow">(ANSI) C Reference &#8211; Control the Flow</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/ansi-c-reference-control-the-flow/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(ANSI) C Reference &#8211; C Operators</title>
		<link>http://www.codingunit.com/ansi-c-reference-c-operators</link>
		<comments>http://www.codingunit.com/ansi-c-reference-c-operators#comments</comments>
		<pubDate>Thu, 23 Jul 2009 12:00:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Operators]]></category>

		<guid isPermaLink="false">http://localhost/?p=455</guid>
		<description><![CDATA[A look at the ANSI C operators and there meaning. ++ &#8211;&#62;  Increment &#8211; &#8211;&#62;  Decrement +, - &#8211;&#62;  Plus, minus ! &#8211;&#62;  Logical not ~ &#8211;&#62;  Bitwise no * &#8211;&#62;  Multiply / &#8211;&#62;  Divide % &#8211;&#62;  Modulus sizeof &#8211;&#62;  Size of an object (type) expr &#8211;&#62;  Cast expression to type &#60;&#60;, &#62;&#62; &#8211;&#62;  Left [...]<p><a href="http://www.codingunit.com/ansi-c-reference-c-operators">(ANSI) C Reference &#8211; C Operators</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/ansi-c-reference-c-operators/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(ANSI) C Reference &#8211; C Constants</title>
		<link>http://www.codingunit.com/ansi-c-reference-c-constants</link>
		<comments>http://www.codingunit.com/ansi-c-reference-c-constants#comments</comments>
		<pubDate>Thu, 23 Jul 2009 11:54:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Constants]]></category>

		<guid isPermaLink="false">http://localhost/?p=453</guid>
		<description><![CDATA[The constants that can be used in the C programing language. F or f -&#62;  float (suffix) L or l -&#62;  long (suffix) 0X or 0x -&#62;  Hexadecimal (prefix zero-x) 0 -&#62;  Octal (prefix zero) e -&#62;  Exponential form (char, octal, hex) &#8216;a&#8217;, &#8216;\ooo&#8217;, &#8216;\xhh&#8217; -&#62;  Character constant \n -&#62;  Newline \r -&#62;  Carriage return [...]<p><a href="http://www.codingunit.com/ansi-c-reference-c-constants">(ANSI) C Reference &#8211; C Constants</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/ansi-c-reference-c-constants/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
