#Expression must be a modifiable lvalue

2 messages · Page 1 of 1 (latest)

meager umbra
#

What is the meaning of this? Why can't I assign a character value to the temp->task

struct Todo{
    int index;
    char task[100];
    struct Todo *next;
};

This is the structure of Todo.

#

!solved