I write a struct
struct Tree{
struct Node *root;
struct Node NIL_t;
struct Node * const NIL; //sentinel
}
I want
struct Node * const NIL = &NIL_t;
I can't initialize it inside the struct. I'm using msvs.
I use C, NOT C++. I know I can use initialization list in C++.
How to do so in C?