gpt4 book ai didi

c - 通过类型转换使用指向指针的指针在c中传递二维数组

转载 作者:行者123 更新时间:2023-11-30 18:15:23 24 4
gpt4 key购买 nike

How to pass a 2D array as a parameter in C?

我正在寻找将二维数组传递给 c 中的函数,我发现了上面的网站。我理解传递二维数组的第一种和第二种方法,但我得到了对第三种方法感到困惑,具体来说,它是如何工作的?`

3) Using an array of pointers or double pointer
In this method also, we must typecast the 2D array when passing to function.
#include <stdio.h>
// Same as "void print(int **arr, int m, int n)"
void print(int *arr[], int m, int n)
{
int i, j;
for (i = 0; i < m; i++)
for (j = 0; j < n; j++)
printf("%d ", *((arr+i*n) + j));
}

int main()
{
int arr[][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
int m = 3;
int n = 3;
print((int **)arr, m, n);
return 0;
}
Output:

1 2 3 4 5 6 7 8 9

`

上面的代码在代码块上运行良好。当从 main() 调用 print() 时,我们通过将 arr 类型转换为指向指针的指针来传递 arr 作为参数,但在函数 print() 中> 它仅取消引用一次以打印值。 printf("%d ", *((arr+i*n) + j));
不应该是*((*arr+i*n) + j)); ,我尝试编译这个语句,它编译但不执行。

2) Using a single pointer
In this method, we must typecast the 2D array when passing to function.

#include <stdio.h>
void print(int *arr, int m, int n)
{
int i, j;
for (i = 0; i < m; i++)
for (j = 0; j < n; j++)
printf("%d ", *((arr+i*n) + j));
}

int main()
{
int arr[][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
int m = 3, n = 3;
print((int *)arr, m, n);
return 0;
}
Output:

1 2 3 4 5 6 7 8 9

`

第二种方法和第三种方法仅在 print() 函数中传递的参数类型不同,其余代码相同。那么这些功能的工作实际上有什么区别?

最佳答案

传递二维数组的最简单方法,

功能

void PrintArray(unsigned char mat[][4]){
int i, j;
printf("\n");
for(i = 0;i<4;i++){
for(j = 0;j<4;j++)
printf("%3x",mat[i][j]);

printf("\n");
}
printf("\n");
}

主要内容

int main(){

int i,j;
//static int c=175;
unsigned char state[4][4], key[4][4], expandedKey[176];


printf("enter the value to be decrypted");
for(i=0;i<4;i++)
for(j=0;j<4;j++)
scanf("%x",(unsigned int *)&state[j][i]);
PrintArray(state);

return 0;
}

关于c - 通过类型转换使用指向指针的指针在c中传递二维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29695000/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com