#include <stdio.h> void T(int *p,int n) { int *point=p; for(;point<p+n;point++)//point move step by step untill the end; { printf("%d",*point); } } main() { int a[3][3]={1,2,3,4,5,6,7,8,9}; T(a[0],9); //send the first address and the size; return 0; }