OiO.lk Blog C# Creating a type referencing itself in C
C#

Creating a type referencing itself in C


I would like to create a struct with pointer to the property of the same type.

Ideally I would like to go for something like this, but this causes compilation error:

typedef struct {

  int data;
  Node *next;

} Node;

Solution I’m going for in this scenerio is:

typedef struct Node_s {

  int data;
  struct Node_s *next;

} Node_t;

Is it a valid approach or could it cause any obvious issues?



You need to sign in to view this answers

Exit mobile version