Coders Packet

Packets submitted by Arjun Tyagi

Deleting a node from a singly linked list using C

In this project, we will discuss how to delete a node from a singly linked list using C language. To delete a node at the nth position we have to traverse up to the nth element from starting.

Reverse a linked list using C

In this article, we will discuss the method and program to reverse a linked list using the C programming language.

Singly linked list using C

In C programming Singly linked list is a linear data structure that has two parts one is the data part and the other is the link part that stores the address of the next node.