<?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: ARRAY: the name of confusion</title>
	<atom:link href="https://www.emblogic.com/blog/07/array-the-name-of-confusion/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.emblogic.com/blog/07/array-the-name-of-confusion/</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: hemant.kumar</title>
		<link>https://www.emblogic.com/blog/07/array-the-name-of-confusion/#comment-960</link>
		<dc:creator><![CDATA[hemant.kumar]]></dc:creator>
		<pubDate>Tue, 10 Jul 2012 10:31:48 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=3852#comment-960</guid>
		<description><![CDATA[there is no check boundation in arrays ..
for(i=0;i&lt;2;i++)
{
for(j=0;j&lt;3;j++)
{
printf(&quot;array b is %d\n&quot;,b[i][j]);
}
once you go beyond the limits you have provided it will give you the garbage values..b[1][2]=5 i.e 1st low and 2nd column 
b[1][3] =4(garbage value) because in array b you declared two rows and three columns ..
in your program..
 for(i=0;i&lt;5;i++)
        {
        for(j=0;j&lt;5;j++)
        {
        printf(“array B: %d\n”,b[i][j])
}
it will take garbage values including your declared values{1,2,3},{3,4,5}
and garbage values can be as same as 
declared values so dont get confuse ..]]></description>
		<content:encoded><![CDATA[<p>there is no check boundation in arrays ..<br />
for(i=0;i&lt;2;i++)<br />
{<br />
for(j=0;j&lt;3;j++)<br />
{<br />
printf(&quot;array b is %d\n&quot;,b[i][j]);<br />
}<br />
once you go beyond the limits you have provided it will give you the garbage values..b[1][2]=5 i.e 1st low and 2nd column<br />
b[1][3] =4(garbage value) because in array b you declared two rows and three columns ..<br />
in your program..<br />
 for(i=0;i&lt;5;i++)<br />
        {<br />
        for(j=0;j&lt;5;j++)<br />
        {<br />
        printf(“array B: %d\n”,b[i][j])<br />
}<br />
it will take garbage values including your declared values{1,2,3},{3,4,5}<br />
and garbage values can be as same as<br />
declared values so dont get confuse ..</p>
]]></content:encoded>
	</item>
</channel>
</rss>
