level 1
#include
#include
int main(int argc, char *argv[]){int a[4][4],i,j,k=0,*p=a; for(i=0;i<4;i++) for(j=0;j<4;j++) if(j
2004年11月09日 06点11分
1
level 7
哦,刚我看错了,二维数组是这样的:p=a[0];用一维数组名做地址
2004年11月09日 08点11分
6
level 7
正好置顶刚收集了一个怎么理解指针的文章,你去看看吧,
2004年11月09日 08点11分
7
level 1
答案是1234可我编的是1 2 3 40 5 6 70 0 8 90 0 0 10
2004年11月09日 08点11分
8
level 7
晕,看到你后面倒数第6行的{没有对应的啊,你想让输出什么呢?
2004年11月09日 08点11分
9
level 1
我还想多了解点函数和宏定义上的问题!有没有在上海的C语言高手啊??
2004年11月09日 08点11分
10
level 0
#include
#include
int main(int argc, char *argv[]){int a[4][4],i,j,k=0,*p;*p=a; for(i=0;i<4;i++) for(j=0;j<4;j++) if(j
2004年11月09日 09点11分
12