用指针输出二维数组

#include "stdafx.h"
#include 
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	int a[3][4] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
	int *p;//指针p是指向整型数据的指针变量
	for (p=a[0]; p

你可能感兴趣的:(C++)