Computer Science, asked by rajimmr16, 1 month ago

how to create all the elements in a linked list in C​

Answers

Answered by taehyung24
0

Answer:

  1. C Program to Create a Linked List & Display the Elements in the List
  2. * C program to create a linked list and display the elements in the list.
  3. #include <malloc.h>
  4. #include <stdlib.h>
  5. struct node.
  6. int num;
  7. struct node *ptr;
  8. };
  9. typedef struct node NODE
Answered by ramneetsingh001
0

C Program to Create a Linked List & Display the Elements in the...

* C program to create a linked list and display the elements in the list.

#include <malloc.h>

#include <stdlib.h>

struct node.

int num;

struct node *ptr;

};

typedef struct node NODE;

Hope it is helpful to you. Please mark my answer as Brainliest Answer

Similar questions