I am newbie to developing in C++ for Windows..
I am trying to produce a struc which will have pointer to other struct...
How is this possible?
struct InitialNode {
Node * nextNode;
Node * lowerNode;
} InitialNode;
struct Node {
Node * nextNode;
Node * lowerNode;
int value;
} Node;
An error is being highlighted at the InitialNode struct where the Node * nextNode; and Node * lowerNode are..
Any ideas?
Thanks a lot beforehand :)