show/hide this revision's text 4 edited tags
show/hide this revision's text 3 added more details to the question due to comment

Which would be a neat implemenation of a N-ary tree in C language?

Particulary, I want to implement an n-ary tree, not self-ballancing, with an unbound number of children in each node, in which each node holds an already defined struct, like this for example:

struct task {
  char command[MAX_LENGTH];
  int required_time;
};
show/hide this revision's text 2 edited body

Which would be a neat implemenation of a N-ary tree in C language?

Particulary, I want to implement an n-ary tree in which each node holds an already defined struct like this:

struct task {
  char command[MAX_LENGHT]command[MAX_LENGTH];
  int required_time;
};
show/hide this revision's text 1