每天锻炼1小时,健康工作50年,幸福生活一辈子!
windguy
全部博文(151)
2014年(12)
2013年(17)
2012年(17)
2011年(5)
2010年(12)
2009年(2)
2007年(26)
2006年(22)
2005年(38)
无赖皮肤
金色の闪
hjshajsh
PythonMa
liushui1
daiyg200
cynthia
浪花小雨
sunshine
qdsslee
kittylyz
分类: LINUX
2009-08-09 14:58:46
#include "stdafx.h" #include <iostream> #include "stdio.h" #include "stdlib.h" using namespace std; void test(int ***a,int row) { cout<<&*a <<":"<<&a <<":" <<endl; *a=new int*[row]; for (int i=0; i<row; i++) { *(*a+i)=new int [10]; for(int j =0;j<row;j++) { char tmp[20]; memset(tmp,0,sizeof(tmp)); sprintf(tmp,"%d%d",i+1,j); *(*(*a+i)+j)=atoi(tmp); cout << *(*(*a+i)+j) << " " ; } cout << endl; } } void out() { /* char *p,*pp,*pstr="test is go\n"; int len=0; p =pstr; while(*p++){len++;pp=p;} cout< cout << pstr <<":" << p- pstr < */ int a=9; int *p,**jj,*j=0; int **pp; pp=&p; p=&a; cout << &p << ":" <<*p <<":" << &a<<":" << &pp<<endl; cout << &jj <<":" <<endl; int ** *pjj=&jj; test(pjj,10); for (int i=0; i<10 ;i++) { for (int j =0;j<10;j++) { int *p =jj[i]; cout <<*(p+j) << " "; } cout << endl; } return ; } int main(int argc, char* argv[]) { out(); return 0; }
上一篇:人生能有几个5年
下一篇:歌声响起
登录 注册