-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathInsertionFrontNodeSLL.c
51 lines (51 loc) · 1.06 KB
/
InsertionFrontNodeSLL.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <stdio.h>
#include<conio.h>
#include<stdlib.h>
void front(int);
struct node
{
int data;
struct node *next;
};
struct node *head;
void display()
{
struct node *ptr;
ptr = head;
if(ptr == NULL)
{
printf("Nothing to print");
}
else
{
printf("\nprinting values . . . . .\n");
while (ptr!=NULL)
{
printf("\n%d",ptr->data);
ptr = ptr -> next;
}
}
}
void front(int item)
{
struct node *ptr = (struct node *)malloc(sizeof(struct node *));
if(ptr == NULL)
{
printf("\nOVERFLOW !!!\n");
}
else
{
ptr->data = item;
ptr->next = head;
head = ptr;
printf("\nGiven node is inserted\n");
}
}
void main ()
{
int item;
printf("\nEnter the item which you want to insert?\n");
scanf("%d",&item);
front(item);
display();
}