Computer Science, asked by rudra9t2king, 17 days ago

Write a C program of singly linked list​

Answers

Answered by AbhishekBhujbal
0

Answer:

include <stdio.h>

#include <stdlib.h>

//Represent a node of singly linked list.

struct node{

int data;

struct node *next;

};

//Represent the head and tail of the singly linked list.

Similar questions