Skip to main content

All Questions

0 votes
1 answer
68 views

How to update field of a pointer to a struct in C?

Im trying to update a field of a struct that's a pointer like so: typedef struct Data *STRUCT_POINTER; typedef struct Data { int element; STRUCT_POINTER next; } STRUCT_NODE; void manipulate(...
Cloyd Abad's user avatar