Creating Sample Node of Linked List in C
So After long break we are again stating the Data Structure Section ,before starting Linked List Section , I would like to Refresh the Linked List Basics -Creating Sample Node in C :
Introduction to Linked List || Advantages || Disadvantages
struct node { int data; struct node *next; };
- This is sample node created in C which Exactly Looks like -

- First part is data part and second part is Address.
- Address - " It Stores address of Whole Structure" , because many students assumed that It stored the address of "next data field"
0 Comments:
Post a Comment
Your Feedback :This is Growing Site and Your Feedback is important for Us to improve the Site performance & Quality of Content.Feel Free to contact and Please Provide Name & Contact Email