write a C program to create a singly linked list by adding each node at the end and delete a node at the beginning
Answers
Answered by
3
Answer:
C program I don't know please mark me as brainlist
Answered by
0
Answer:
Create a new node and make sure that the address part of the new node points to NULL i.e. newNode->next=NULL.
Traverse to the last node of the linked list and connect the last node of the list with the new node, i.e. last node will now point to new node.
Explanation:
Hope u understand
Similar questions
Math,
2 months ago
Math,
2 months ago
Science,
2 months ago
Social Sciences,
9 months ago
English,
9 months ago