二级指针的操作

#include <stdio.h>
#include <stdlib.h>

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

	pStr = arTest;

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

	printf("%s
", *pStr);

	return 0;

}

  

原文地址:https://www.cnblogs.com/superpig0501/p/4455072.html