<?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 Tutorials</title>
	<atom:link href="http://www.codingunit.com/category/c-tutorials/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>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>3</slash:comments>
		</item>
		<item>
		<title>How to make a Calendar in C</title>
		<link>http://www.codingunit.com/how-to-make-a-calendar-in-c</link>
		<comments>http://www.codingunit.com/how-to-make-a-calendar-in-c#comments</comments>
		<pubDate>Wed, 03 Feb 2010 16:31:55 +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=983</guid>
		<description><![CDATA[In the C tutorial “How to use Time and Date in C” some people asked questions in the comment section about determining dates and day of the week. That’s why we created this tutorial to show you what things you have to lookout for, such as leap years. Gregorian Calendar and Leap Years The Gregorian [...]<p><a href="http://www.codingunit.com/how-to-make-a-calendar-in-c">How to make a Calendar 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-make-a-calendar-in-c/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Writing Memory to a File and Reading Memory from a File in C</title>
		<link>http://www.codingunit.com/writing-memory-to-a-file-and-reading-memory-from-a-file-in-c</link>
		<comments>http://www.codingunit.com/writing-memory-to-a-file-and-reading-memory-from-a-file-in-c#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:53:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Tutorials]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/?p=240</guid>
		<description><![CDATA[In this C programming language tutorial we will look at how to save content from an allocated piece of memory to a (binary) file. We also read it back from a (binary) file into memory and display the content. Because the program example is longer than the usual examples that we use in our tutorials, [...]<p><a href="http://www.codingunit.com/writing-memory-to-a-file-and-reading-memory-from-a-file-in-c">Writing Memory to a File and Reading Memory from a File 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/writing-memory-to-a-file-and-reading-memory-from-a-file-in-c/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use Time and Date in C</title>
		<link>http://www.codingunit.com/c-tutorial-how-to-use-time-and-date-in-c</link>
		<comments>http://www.codingunit.com/c-tutorial-how-to-use-time-and-date-in-c#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:36:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Tutorials]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/?p=228</guid>
		<description><![CDATA[In today&#8217;s C programming language tutorial we take a look at how to use time and date from C programs. To make use of time and date function you need to include the time.h header file from the standard C library. This header file contains functions and macros that provide standardized access to time and [...]<p><a href="http://www.codingunit.com/c-tutorial-how-to-use-time-and-date-in-c">How to use Time and Date 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/c-tutorial-how-to-use-time-and-date-in-c/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>C Tutorial &#8211; Command Line Parameter Parsing</title>
		<link>http://www.codingunit.com/c-tutorial-command-line-parameter-parsing</link>
		<comments>http://www.codingunit.com/c-tutorial-command-line-parameter-parsing#comments</comments>
		<pubDate>Thu, 23 Jul 2009 07:30:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Tutorials]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/?p=225</guid>
		<description><![CDATA[In this tutorial we take another look at command line parameter parsing with C programs. In a previous command line parameter tutorial we already looked at some simple command line argument parsing example. Please read that tutorial before advancing below. More Complex Command Line Parameter Parsing Example Command-line parameters can be used for many things. [...]<p><a href="http://www.codingunit.com/c-tutorial-command-line-parameter-parsing">C Tutorial &#8211; Command Line Parameter Parsing</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-command-line-parameter-parsing/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>C Tutorial &#8211; Copying a File</title>
		<link>http://www.codingunit.com/c-tutorial-copying-a-file-in-c</link>
		<comments>http://www.codingunit.com/c-tutorial-copying-a-file-in-c#comments</comments>
		<pubDate>Thu, 23 Jul 2009 07:25:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Tutorials]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/?p=223</guid>
		<description><![CDATA[In a previous tutorial we already talked about renaming and removing a file. In this C programming language tutorial we look at how to copy a file. Let&#8217;s look at an example: #include&#60;stdio.h&#62; int copy_file(char *old_filename, char *new_filename) { FILE *ptr_old, *ptr_new; errno_t err = 0, err1 = 0; int a; err = fopen_s(&#38;ptr_old, old_filename, [...]<p><a href="http://www.codingunit.com/c-tutorial-copying-a-file-in-c">C Tutorial &#8211; Copying a 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-copying-a-file-in-c/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Tutorial &#8211; Deleting and Renaming a File</title>
		<link>http://www.codingunit.com/c-tutorial-deleting-and-renaming-a-file</link>
		<comments>http://www.codingunit.com/c-tutorial-deleting-and-renaming-a-file#comments</comments>
		<pubDate>Thu, 23 Jul 2009 07:21:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Tutorials]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/?p=220</guid>
		<description><![CDATA[In two previous tutorials we talked about file I/O functions on text files and file I/O functions on binary files. In this C programming language tutorial we look at how to remove files and how to rename a file. Remove a File With function remove() we can delete a file. Let us take a look [...]<p><a href="http://www.codingunit.com/c-tutorial-deleting-and-renaming-a-file">C Tutorial &#8211; Deleting and Renaming a 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-deleting-and-renaming-a-file/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>C Tutorial &#8211; Binary File I/O</title>
		<link>http://www.codingunit.com/c-tutorial-binary-file-io</link>
		<comments>http://www.codingunit.com/c-tutorial-binary-file-io#comments</comments>
		<pubDate>Thu, 23 Jul 2009 07:17:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Tutorials]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/?p=218</guid>
		<description><![CDATA[In an earlier tutorial we talked about file I/O functions and the use of text files. In this C programming tutorial we are going to talk about the use of binary files. Binary files Binary files are very similar to arrays of structures, except the structures are in a disk-file rather than an array in [...]<p><a href="http://www.codingunit.com/c-tutorial-binary-file-io">C Tutorial &#8211; Binary File I/O</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-binary-file-io/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>C Tutorial &#8211; The functions malloc and free</title>
		<link>http://www.codingunit.com/c-tutorial-the-functions-malloc-and-free</link>
		<comments>http://www.codingunit.com/c-tutorial-the-functions-malloc-and-free#comments</comments>
		<pubDate>Thu, 23 Jul 2009 07:11:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Tutorials]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/?p=216</guid>
		<description><![CDATA[The function malloc is used to allocate a certain amount of memory during the execution of a program. The malloc function will request a block of memory from the heap. If the request is granted, the operating system will reserve the requested amount of memory. When the amount of memory is not needed anymore, you [...]<p><a href="http://www.codingunit.com/c-tutorial-the-functions-malloc-and-free">C Tutorial &#8211; The functions malloc and free</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-the-functions-malloc-and-free/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>C Tutorial &#8211; File I/O (using text files)</title>
		<link>http://www.codingunit.com/c-tutorial-file-io-using-text-files</link>
		<comments>http://www.codingunit.com/c-tutorial-file-io-using-text-files#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:06:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Tutorials]]></category>
		<category><![CDATA[C Programming Language Tutorial]]></category>

		<guid isPermaLink="false">http://localhost/?p=213</guid>
		<description><![CDATA[The file I/O functions and types in the C language are straightforward and easy to understand. To make use of these functions and types you have to include the stdio library. (Like we already did in most of the tutorials). The file I/O functions in the stdio library are: fopen &#8211; opens a text file. [...]<p><a href="http://www.codingunit.com/c-tutorial-file-io-using-text-files">C Tutorial &#8211; File I/O (using text files)</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-file-io-using-text-files/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
