answersLogoWhite

0

As its name suggests, a nested structure is a structure which contains another within it. Here is an example in which the "nApple" structure is nested withing the "nTree" structure: #include

struct nApple

{

int stem;

int skin;

};

struct nTree

{

int leaves;

nApple redDelicious;

nApple grannySmith;

};

User Avatar

Wiki User

15y ago

What else can I help you with?