gpt4 book ai didi

c - C语言二维数组

转载 作者:太空宇宙 更新时间:2023-11-04 00:20:56 24 4
gpt4 key购买 nike

我将一个二维数组传递给一个函数来打印输出,但是我得到的输出是错误的


函数

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;
}

预期输出

  1  5  9  c   
2 6 0 d
3 7 a e
4 8 b f

实际输出

h2o@h2o-Vostro-1015:~$ ./a.out enter the value to be decrypted 1 2 3 4 5 6 7 8 9 0 a b c d e f

1 5 9 c
0 0 0 d
0 0 0 e
0 0 0 f

我检查了传递二维数组的方法,我认为它是正确的,但不确定为什么我得到这个输出,请指教...

最佳答案

我要冒险说你的问题出在这里:

scanf("%x",(unsigned int *)&state[j][i]);

state[i][j] 的大小可以容纳单个 char,但您要告诉 scanf 将其视为一个指向 unsigned int 的指针;这可能意味着 scanf 正在覆盖相邻的数组元素,因为 sizeof (unsigned int) 很可能大于 sizeof (char)

mainPrintArray 中将数组的声明从 char 更改为 unsigned int,并丢失scanf 中的类型转换。

关于c - C语言二维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25491774/

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