<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>Comments on: c basics</title>
	<atom:link href="https://www.emblogic.com/blog/10/c-basics/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.emblogic.com/blog/10/c-basics/</link>
	<description>Embedded System and ARM Training</description>
	<lastBuildDate>Mon, 07 Oct 2013 04:00:03 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
	<item>
		<title>By: Swarup mishra</title>
		<link>https://www.emblogic.com/blog/10/c-basics/#comment-352</link>
		<dc:creator><![CDATA[Swarup mishra]]></dc:creator>
		<pubDate>Thu, 20 Oct 2011 11:55:05 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=1148#comment-352</guid>
		<description><![CDATA[NULL is a macro defined in the  header file for NULL POINTER
 while NUL is the name of first character in ASCII table that corresponds to the 0 decimal value.]]></description>
		<content:encoded><![CDATA[<p>NULL is a macro defined in the  header file for NULL POINTER<br />
 while NUL is the name of first character in ASCII table that corresponds to the 0 decimal value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mandeesh Singh</title>
		<link>https://www.emblogic.com/blog/10/c-basics/#comment-351</link>
		<dc:creator><![CDATA[Mandeesh Singh]]></dc:creator>
		<pubDate>Thu, 20 Oct 2011 06:15:52 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=1148#comment-351</guid>
		<description><![CDATA[NUL : A Character in the ASCII set with an ASCII value of 0. Used as a Control character or a String Terminator to indicate the End of Strings.

NULL : It is an Address. It is used to Initialize pointers to indicate that the Pointer does not point to a Valid Object.
Try this :
int main()
{
        printf(&quot;%d %d&quot;,sizeof(&quot;&quot;),sizeof(NULL));
}

More information can be found here :
http://en.wikipedia.org/wiki/Null_character
http://en.wikipedia.org/wiki/Null_pointer#Null_pointer]]></description>
		<content:encoded><![CDATA[<p>NUL : A Character in the ASCII set with an ASCII value of 0. Used as a Control character or a String Terminator to indicate the End of Strings.</p>
<p>NULL : It is an Address. It is used to Initialize pointers to indicate that the Pointer does not point to a Valid Object.<br />
Try this :<br />
int main()<br />
{<br />
        printf(&#8220;%d %d&#8221;,sizeof(&#8220;&#8221;),sizeof(NULL));<br />
}</p>
<p>More information can be found here :<br />
<a href="http://en.wikipedia.org/wiki/Null_character" rel="nofollow">http://en.wikipedia.org/wiki/Null_character</a><br />
<a href="http://en.wikipedia.org/wiki/Null_pointer#Null_pointer" rel="nofollow">http://en.wikipedia.org/wiki/Null_pointer#Null_pointer</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
