<?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 Tutorial &#8211; Arrays and Multi-Dimensional Arrays</title>
	<atom:link href="http://www.codingunit.com/c-tutorial-arrays-and-multi-dimensional-arrays/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codingunit.com/c-tutorial-arrays-and-multi-dimensional-arrays</link>
	<description>CodingUnit is your online resource for learning to program. Tutorials on C, C++, PHP, Python, MySQL, Java, JQuery, Opengl, DirectX and much more!</description>
	<lastBuildDate>Mon, 06 Feb 2012 06:08:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Gharib</title>
		<link>http://www.codingunit.com/c-tutorial-arrays-and-multi-dimensional-arrays/comment-page-1#comment-4461</link>
		<dc:creator>Gharib</dc:creator>
		<pubDate>Sat, 04 Feb 2012 18:27:45 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=178#comment-4461</guid>
		<description>on array looping
a[i] = 0;
where it come from and how?
pls help</description>
		<content:encoded><![CDATA[<p>on array looping<br />
a[i] = 0;<br />
where it come from and how?<br />
pls help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: binub m</title>
		<link>http://www.codingunit.com/c-tutorial-arrays-and-multi-dimensional-arrays/comment-page-1#comment-4384</link>
		<dc:creator>binub m</dc:creator>
		<pubDate>Sat, 31 Dec 2011 13:23:23 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=178#comment-4384</guid>
		<description>thanks for helpfull information...</description>
		<content:encoded><![CDATA[<p>thanks for helpfull information&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hiren</title>
		<link>http://www.codingunit.com/c-tutorial-arrays-and-multi-dimensional-arrays/comment-page-1#comment-4339</link>
		<dc:creator>hiren</dc:creator>
		<pubDate>Tue, 06 Dec 2011 16:23:59 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=178#comment-4339</guid>
		<description>very helpful n easy to unterstand</description>
		<content:encoded><![CDATA[<p>very helpful n easy to unterstand</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cn</title>
		<link>http://www.codingunit.com/c-tutorial-arrays-and-multi-dimensional-arrays/comment-page-1#comment-4275</link>
		<dc:creator>cn</dc:creator>
		<pubDate>Thu, 24 Nov 2011 14:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=178#comment-4275</guid>
		<description>should be 
char* strArray[5][4]
doesn&#039;t it?</description>
		<content:encoded><![CDATA[<p>should be<br />
char* strArray[5][4]<br />
doesn&#8217;t it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Csaba</title>
		<link>http://www.codingunit.com/c-tutorial-arrays-and-multi-dimensional-arrays/comment-page-1#comment-4108</link>
		<dc:creator>Csaba</dc:creator>
		<pubDate>Tue, 08 Nov 2011 21:19:17 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=178#comment-4108</guid>
		<description>For Strings you just use like this (Example with initialisation):

char*  strArray[5][3] = {&quot;[0].[0]&quot;,&quot;[0].[1]&quot;,&quot;[0].[2]&quot;,&quot;[0].[3]&quot;
                        ,&quot;[1].[0]&quot;,&quot;[1].[1]&quot;,&quot;[1].[2]&quot;,&quot;[1].[3]&quot;,
                        ,&quot;[2].[0]&quot;,&quot;[2].[1]&quot;,&quot;[2].[2]&quot;,&quot;[2].[3]&quot;,
                        ,&quot;[3].[0]&quot;,&quot;[3].[1]&quot;,&quot;[3].[2]&quot;,&quot;[3].[3]&quot;,
                        ,&quot;[4].[0]&quot;,&quot;[4].[1]&quot;,&quot;[4].[2]&quot;,&quot;[4].[3]&quot;
                        };</description>
		<content:encoded><![CDATA[<p>For Strings you just use like this (Example with initialisation):</p>
<p>char*  strArray[5][3] = {&#8220;[0].[0]&#8220;,&#8221;[0].[1]&#8220;,&#8221;[0].[2]&#8220;,&#8221;[0].[3]&#8221;<br />
                        ,&#8221;[1].[0]&#8220;,&#8221;[1].[1]&#8220;,&#8221;[1].[2]&#8220;,&#8221;[1].[3]&#8220;,<br />
                        ,&#8221;[2].[0]&#8220;,&#8221;[2].[1]&#8220;,&#8221;[2].[2]&#8220;,&#8221;[2].[3]&#8220;,<br />
                        ,&#8221;[3].[0]&#8220;,&#8221;[3].[1]&#8220;,&#8221;[3].[2]&#8220;,&#8221;[3].[3]&#8220;,<br />
                        ,&#8221;[4].[0]&#8220;,&#8221;[4].[1]&#8220;,&#8221;[4].[2]&#8220;,&#8221;[4].[3]&#8221;<br />
                        };</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: via cals</title>
		<link>http://www.codingunit.com/c-tutorial-arrays-and-multi-dimensional-arrays/comment-page-1#comment-3767</link>
		<dc:creator>via cals</dc:creator>
		<pubDate>Thu, 15 Sep 2011 02:12:56 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=178#comment-3767</guid>
		<description>what about for strings?</description>
		<content:encoded><![CDATA[<p>what about for strings?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

