Sep 16, 2024
head
pointer is referencing the first node.stdio.h
and stdlib.h
.struct node
consisting of data and link parts.printData
function, which prints linked list data.head
pointerCheck if Linked List is Empty:
head
is NULL
, print "link list is empty."Initialize Pointer:
ptr
as a pointer to struct node
initialized to NULL
.head
to ptr
.Traverse and Print Data:
ptr
is not NULL
.
ptr
.ptr
to point to the next node (ptr = ptr->link
).ptr
) starts at address 1000.ptr
to the next node address (2000).ptr
to the next node address (3000).ptr
to NULL
(end of list).ptr
is NULL
.