Link to home
Start Free TrialLog in
Avatar of Al283
Al283

asked on

nested structures: pointer to outer object

Trees often use nested structures of this type:
struct Node{
struct *Node;
}
I have an object with such structure with arbitrary number of levels.
How can I determine a pointer to an outer object for a given inner object?
ASKER CERTIFIED SOLUTION
Avatar of sarabande
sarabande
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial