I would like to use type, which is yet not know, becuase I am using it in its own definition:
typedef struct{
int value;
node_t *next;
} node_t
I do not to create new variable (which I would do, If I use tag of that struct (typedef struct foo{...} foo_t
, where foo
is a concrete variable) I just want to create new type and use it even in its definition. Is it possible in c?