リンクされたリストを扱っていますが、リンクされたリストの次の要素に移動する際に問題があります。私が手にエラーがある:あなたの助けのためのリンクされたリストの次の要素に移動しようとするとエラーが発生する
typedef struct item
{
float size;
struct item *next;
} item;
item head, curr, tail;
...
head.next = (item*) malloc(sizeof(item));
curr = head.next;
ありがとう:ここerror: incompatible types when assigning to type 'item' from type 'struct item *
はコードです。