Hi
I haven't been writing C for very long, and so I'm not sure about how I should go about doing these sorts of recursive things... I would like each cell to contain another cell, but I get an error along the lines of "field 'child' has incomplete type". What's up?
typedef struct Cell {
bool isParent;
Cell child;
} Cell;
Thanks,
z.
PS (Ziggy is also clearly confused by typedef: he has typedefed Cell to Cell and wonders why?)
