I'm just trying to create a simple recursive structure without too much knowledge of C (I need to learn something)
here is my make compilation line
g++ -o cs533_hw3 main.c
here is my code
typedef struct Node Node; struct Node { int texture; float rotation; Node *children[2]; }; Node rootNode; rootNode.rotation
Here is my mistake on the last line
error: 'rootNode' does not name a type
source share