<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:media="http://search.yahoo.com/mrss/"
	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>多维数组 - 四号程序员</title>
	<atom:link href="https://www.coder4.com/archives/tag/%E5%A4%9A%E7%BB%B4%E6%95%B0%E7%BB%84/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Mon, 14 May 2012 14:29:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
	<item>
		<title>C系语言中多维数组的理解</title>
		<link>https://www.coder4.com/archives/3153</link>
					<comments>https://www.coder4.com/archives/3153#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Mon, 14 May 2012 14:29:53 +0000</pubDate>
				<category><![CDATA[C && C++]]></category>
		<category><![CDATA[c语言]]></category>
		<category><![CDATA[多维数组]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3153</guid>

					<description><![CDATA[int array[m][n]; 这个二维数组，可以堪称是m个长度为n的一维数组。 在内存中排列的方式是[0][1]..[n-1]  [0][1]...[n-1]....一共m组这样的。 在访问时，array[m][n] = *(*(array+m)+n)，对N维的数组取值时要用到N个*。 参考了这个：http://blog.csdn.net/hai836045106/article/details/6729756[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3153/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
