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_LENGTH];
      int required_time;
    };