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; What does &head represent?

A. The same as &w. B. The address of the variable head.
C. The address of the beginning of the linked list. D. all of the above

Answer: Option B
Explaination:

No Explanation



Discussion

Your Comments Goes here...
NameDiscussion