Right Click to Search

Sunday, April 18, 2025

Creating Sample Node of Linked List in C





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 -
Introduction to Linked List || Advantages || Disadvantages
Creating Sample Node in C :
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"



Stumble
Delicious
Technorati
Twitter
Facebook

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

 

Learn C Programming Copyright © 2010 LKart Theme is Designed by Lasantha, Free Blogger Templates