Computer Science, asked by shubhampamecha, 4 months ago

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 Sonam200583
3

Answer:

C program I don't know please mark me as brainlist

Answered by Anonymous
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