我正在玩不同的程序来学习指针,数组和数组名称是如何相关的。我得到了所有的答案,直到这个简单的程序给了我一个意想不到的输出。
这里我通过一个函数获取了一个数组输入,将其第一个变量的地址返回给指针,然后尝试使用指针打印数组。有些事情出错了,我没有得到输出我希望。有人能告诉我我的代码有什么问题吗?
#include<stdio.h>
#include<stdlib.h>
int n;
int* InputArray()
{
printf("\nFucntion InputArray active\nPlease Enter the dimesnion (max 100): ");
scanf("%d",&n);
printf("\nAn array of %dx%d will be inputed and printed\n",n,n);
static int A[100][100];
int i=0,j=0;
for( i=0;i<n;i++)
{
printf("\n");
for( j=0;j<n;j++)
{printf("\nEnter the %d,%d element:",i,j);
scanf("%d",&A[i][j]);
}
}
//view the array
i=0,j=0;
for( i=0;i<n;i++)
{
printf("\n");
for( j=0;j<n;j++)
{printf("%d",A[i][j]);
}
}
return A;
}
int main()
{
int *AdrAry;
AdrAry=InputArray();
printf("\nDisplayig the array using its pointer declared ,"
"\nin the main\n");
int i,j;
printf("\n");
//Outputting array using pointer
for( j=0;j<n*n;j++)
printf("%d\t",*(AdrAry+j));
return 0;
}
我得到以下输出(通过指针观察数组输出与声明的数组不同步)
Fucntion InputArray active
Please Enter the dimesnion (max 100): 2
An array of 2x2 will be inputed and printed
Enter the 0,0 element:1
Enter the 0,1 element:2
Enter the 1,0 element:3
Enter the 1,1 element:4
12
34
Displayig the array using its pointer declared ,
in the main
1 2 0 0
答案 0 :(得分:1)
您的2D阵列是100 x 100,因此当您使用AdrAry + j时,只打印第一行。 这应该是:
for(i = 0; i < n; ++i)
for(j = 0; j < n; ++j)
printf("%d\t", *(AdrAry + (100 * i + j)));