我目前正在试图了解如何在C中实现一个二维数组的结构体.我的代码一直在崩溃,而且我真的要让它像我所有的方法都变得更加坚定,C:垃圾.这就是我所得到的:
typedef struct { int i; } test; test* t[20][20]; *t = (test*) malloc(sizeof(test) * 20 * 20);
我的光荣错误:
error: incompatible types when assigning to type ‘struct test *[20]’ from type ‘struct test *’
我必须分配每个第二维度的内存吗?我越来越坚果应该这么简单有一天,我将建立一个时间机器,并激活一些c编译软盘…
解决方法
这应该够了
typedef struct { int i; } test; test t[20][20];
这将声明一个尺寸为20 x 20的二维数组测试.没有必要使用malloc.
如果要动态分配阵列,可以这样做:
// in a function of course test **t = (test **)malloc(20 * sizeof(test *)); for (i = 0; i < 20; ++i) t[i] = (test *)malloc(20 * sizeof(test));