Is there an easy explanation for what this error means?
request for member '*******' in something not a structure or union
I've encountered it several times in the time that I've been learning C, but I haven't got a clue as to what it means.
|
|
|
You are trying to access a member of a structure, but in something that is not a structure. For example:
|
|||
|
|
|
It also happens if you're trying to access an instance when you have a pointer, and vice versa:
As pointed out in a comment, this can be made excruciating if someone goes and
Because then you get code that looks like it's dealing with instances, when in fact it's dealing with pointers:
Note how the above looks as if it should be written |
|||||||||||||
|
|
can also appear if:
instead of
|
|||
|
|
|
It may also happen in the following case: eg. if we consider the push function of a stack:
The error is in the push function and in the commented line. The pointer s has to be included within the parentheses. The correct code: scanf("%d",&( (*s)->a[++(*s)->head])); |
|||
|
|