<?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>LINUX ADMINISTRATION NOTES &#38; CODE SNIPPETS &#187; Linux Programming Tutorial</title>
	<atom:link href="http://linuxbloggers.org/category/linux-programming-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxbloggers.org</link>
	<description>pTCsxunH</description>
	<lastBuildDate>Sun, 28 Feb 2010 18:43:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Basic example of simple C program include static library compilation-source code</title>
		<link>http://linuxbloggers.org/basic-example-of-simple-c-program-include-static-library-compilation-source-cod/</link>
		<comments>http://linuxbloggers.org/basic-example-of-simple-c-program-include-static-library-compilation-source-cod/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 11:27:12 +0000</pubDate>
		<dc:creator>linux</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Programming Tutorial]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.linuxconfig.org/?p=86</guid>
		<description><![CDATA[install gcc compiler:
apt-get install gcc
All following steps are done in the same directory !! NO need to have an root permissions.
create library1 and save it as liblibrary_1.c:
#include
void library_1(char *val)
{
printf("Passed value to library_1: %s\n", val);
}
create library2 and save it as liblibrary_2.c:
#include
void library_2(char *val)
{
printf("Passed value to library_2: %s\n", val);
}

Compile both c libraries source codes:
gcc -c liblibrary_1.c liblibrary_2.c
NOTE: [...]]]></description>
		<wfw:commentRss>http://linuxbloggers.org/basic-example-of-simple-c-program-include-static-library-compilation-source-cod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My First Linux C Program Example- Hello world</title>
		<link>http://linuxbloggers.org/my-first-linux-c-program-exampl-hello-world/</link>
		<comments>http://linuxbloggers.org/my-first-linux-c-program-exampl-hello-world/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 13:01:05 +0000</pubDate>
		<dc:creator>linux</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Programming Tutorial]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[start]]></category>

		<guid isPermaLink="false">http://blog.linuxconfig.org/?p=85</guid>
		<description><![CDATA[Here is how you can create linux hello world program. First make sure that you have gcc ( c programming language compiler ) package installed. On debian or on ubuntu you would do:
apt-get install gcc
save this code as linux_program_hello.c
#include
#include
int main()
{
printf("My First Linux Program - Hello World\n");
exit(0);
}
now its compile time:
gcc -o linux_program_hello linux_program_hello.c
run your first c [...]]]></description>
		<wfw:commentRss>http://linuxbloggers.org/my-first-linux-c-program-exampl-hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
