[求助]指针问题。
#include<stdio.h>
#include<time.h>
#include<stdlib.h>
#define N 9
void input(int *p)
{
// int i,j;
srand((unsigned)time(NULL));
*p=rand()%9+1;
}
void output(int a[N][N])
{
int i,j,count=0;
for(i=0;i<N;i++)
for(j=0;j<N;j++)
{
printf("%-3d",a[i][j]);
count++;
if(count%9==0)
printf("\n");
}
}
void main()
{
int row,col,ary[N][N];
int *p;
p=&ary[0][0];
for(row=0;row<N;row++)
for(col=0;col<N;col++)
{
input(p);
p++;
}
output(ary);
}
我想打出9*9的矩阵,数字是有随即函数输入,但我现在数字全都一样。