I tried to write a program with the following struct
declaration:
struct N
{
int value;
N Left;
N Right;
};
If that was possible, there would be an infinite number of structs in my program. I still want my Left and Right to have the exact same structure as N. Is there a way to do that?