Hi,
I am a newbie with C and am trying to get a simple linked list working
for my program. The structure of each linked list stores the char
*data and *next referencing to the next link. The problem I get is
that I am trying to link a struct that I have defined and its refusing
to link. I have tried casting my struct into char * but attempts to
cast it back to its original struct to access its contents only seg
faults.
I'd attempt to change the type of data in the linked list to that my
struct but that just doesnt seem right.
Any advice is appreciated.
Thanks
Ben
I am a newbie with C and am trying to get a simple linked list working
for my program. The structure of each linked list stores the char
*data and *next referencing to the next link. The problem I get is
that I am trying to link a struct that I have defined and its refusing
to link. I have tried casting my struct into char * but attempts to
cast it back to its original struct to access its contents only seg
faults.
I'd attempt to change the type of data in the linked list to that my
struct but that just doesnt seem right.
Any advice is appreciated.
Thanks
Ben
Comment