二级指针的操作

时间:2015-04-25 01:29:13   收藏:0   阅读:141
#include <stdio.h>
#include <stdlib.h>

int main()
{
	char (*pStr)[9] = NULL;
	
	char arTest[2][9] = {"00001", "00002"};

	pStr = arTest;

	printf("%s\n", *pStr);
	
	pStr++;

	printf("%s\n", *pStr);

	return 0;

}

  

原文:http://www.cnblogs.com/superpig0501/p/4455072.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!