<?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>frag&#039;s &#187; C</title>
	<atom:link href="http://www.gadaleta.org/tag/c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gadaleta.org</link>
	<description>Yet Another Personal Page</description>
	<lastBuildDate>Tue, 13 Apr 2010 10:18:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>const pointer vs. pointer to const</title>
		<link>http://www.gadaleta.org/2008/06/const-pointer-vs-pointer-to-const/</link>
		<comments>http://www.gadaleta.org/2008/06/const-pointer-vs-pointer-to-const/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 04:35:36 +0000</pubDate>
		<dc:creator>frag</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[constant]]></category>
		<category><![CDATA[pointer]]></category>
		<category><![CDATA[programming languages]]></category>

		<guid isPermaLink="false">http://www.gadaleta.org/main/2008/06/27/const-pointer-vs-pointer-to-const/</guid>
		<description><![CDATA[/* ex. usage of a constant pointer to a (variable integer) ex. how to fuck a pointer to a constant variable */ #include int main(void) { const int c=0; // constant pointer to a (variable) integer: can change the value of the var but not the pointer int* const ptr1 = malloc(sizeof(int)); *ptr1 = 10; [...]]]></description>
		<wfw:commentRss>http://www.gadaleta.org/2008/06/const-pointer-vs-pointer-to-const/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
