<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.el-badawy.com"  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>eb.com - c</title>
 <link>http://www.el-badawy.com/?q=taxonomy/term/17/0</link>
 <description></description>
 <language>en</language>
<item>
 <title>Declarations and Definitions</title>
 <link>http://www.el-badawy.com/?q=node/390</link>
 <description>&lt;ul&gt;
&lt;li&gt; storage class specifier: extern, static, auto, register, typedef
&lt;/li&gt;&lt;li&gt; type specifier: void, char, int, unsigned,
&lt;/li&gt;&lt;li&gt; type qualifier: const, restrict, volatile
&lt;/li&gt;&lt;li&gt; All instances of a particular name with external linkage refer to the same object in the program
&lt;/li&gt;&lt;li&gt; Unless prefixed it with extern, the declaration of a data object at the outer level is also a definition
&lt;/li&gt;&lt;li&gt; A function prototype is a declaration of a function that declares the types of its parameters.
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;file1.c:&lt;/p&gt;
&lt;pre&gt;
int x;  /* a declaration, and also a definition, external linkage */
&lt;/pre&gt;&lt;p&gt;&lt;a href=&quot;http://www.el-badawy.com/?q=node/390&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="http://www.el-badawy.com/?q=taxonomy/term/17">c</category>
 <pubDate>Fri, 24 Jun 2011 15:17:32 +0000</pubDate>
 <dc:creator>o</dc:creator>
 <guid isPermaLink="false">390 at http://www.el-badawy.com</guid>
</item>
<item>
 <title>C Hello World</title>
 <link>http://www.el-badawy.com/?q=node/384</link>
 <description>&lt;pre&gt;
#include &lt;stdio.h&gt;    // printf
#include &lt;stdlib.h&gt;    // exit

int main() {
    printf( &quot;Hello World\n&quot; );
    exit( EXIT_SUCCESS );
}
&lt;/stdlib.h&gt;&lt;/stdio.h&gt;&lt;/pre&gt;</description>
 <category domain="http://www.el-badawy.com/?q=taxonomy/term/17">c</category>
 <pubDate>Mon, 04 Apr 2011 01:01:01 +0000</pubDate>
 <dc:creator>o</dc:creator>
 <guid isPermaLink="false">384 at http://www.el-badawy.com</guid>
</item>
<item>
 <title>Windows minimal</title>
 <link>http://www.el-badawy.com/?q=node/376</link>
 <description>&lt;p&gt;A real minimal Windows program.&lt;/p&gt;
&lt;pre&gt;
#include windows.h

int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLine, int nCmdShow ) {
	MessageBox( 0, &quot;Hello World&quot;, &quot;Caption&quot;, 0 );
	return 0;
}
&lt;/pre&gt;</description>
 <category domain="http://www.el-badawy.com/?q=taxonomy/term/17">c</category>
 <category domain="http://www.el-badawy.com/?q=taxonomy/term/11">windows</category>
 <pubDate>Mon, 10 Jan 2011 20:58:25 +0000</pubDate>
 <dc:creator>o</dc:creator>
 <guid isPermaLink="false">376 at http://www.el-badawy.com</guid>
</item>
</channel>
</rss>
