Hi the following is the struct format:
typedef struct iorb {
short base_pri;
struct iorb *link;
char filler[110];
} IORB;
I try to assign a string to base_pri, the code I used as followed
temp->filler=filler3;However it shows the error code like this
" temp->filler=filler3;is not an lvalue, but occurs in a context that requires one. (needlvalue)" So what is the problem with it?
I did declare IORB *temp and char filler3[110];
when I compile, it shows me a message could you please help me to solve this problem.
Thanks,
Frenk