编辑——否决的选民可以解释吗?我有一个明确的问题,有支持性证据和先前调查的证据。我想了解你为什么不给我投票……?
使用 gcc 编译时出现此错误:
error: incompatible types when assigning to type ‘struct cell’ from type ‘void *
问题线是:
struct cell* cells = NULL;
cells = malloc(sizeof(struct cell) * length);
for (i = 0; i < length; i++) {
cells[i] = malloc(sizeof(struct cell) * width);