C - Structures,Unions - Discussion

You Are Here :: Home > C > Structures,Unions - Discussion

 



Q.

struct x { int y; struct x next;} *head;

struct x *w=head;
If we were to maintain an ordered list using the above declarations, the list would be ordered how?

A. In alphabetical order. B. In numeric order.
C. In an order determined by the addresses contained w and head. D. none of the above.

Answer: Option B
Explaination:

No Explanation



Discussion

Your Comments Goes here...
NameDiscussion