-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpush_pop_in_stack.c
More file actions
77 lines (70 loc) · 1.1 KB
/
push_pop_in_stack.c
File metadata and controls
77 lines (70 loc) · 1.1 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
Write a program in C to implement PUSH and POP in stack using dynamic array.
#include <stdio.h>
#include <stdlib.h>
struct stack
{
int num;
struct stack*next;
};
struct stack*top=NULL;s
int main()
{
push();
display();
pop();
display();
return 0;
}
void push()
{
struct stack*p;
int n,ch;
printf("\n How Many Values want to enter");
scanf("%d",&ch);
while(ch>0)
{
printf(" Enter the values");
scanf("%d",&n);
p=(struct stack*)malloc(sizeof(struct stack));
p->num=n;
p->next=NULL;
if(top==NULL)
top=p;
else{
p->next=top;
top=p;
}
ch--;
}
}
void pop()
{
int ch;
struct stack*p;
printf("Enter How many Values want remove");
scanf("%d",&ch);
while(ch>0)
{
p=top;
printf("%d",p->num);
top=top->next;
free(p);
if(top==NULL)
{
printf("underflow");
}
else{
}
ch--;
}
}
void display()
{
struct stack*p;
p=top;
while(p!=NULL)
{
printf("%d",p->num);
p=p->next;
}
}