編集- 反対票を投じた人は説明できますか? 裏付けとなる証拠と事前調査の証拠を添えて、明確な質問があります。なぜあなたが私に反対票を投じているのか理解したいのですが...?
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);