-
Notifications
You must be signed in to change notification settings - Fork 690
/
Stack_as_array.c
75 lines (74 loc) · 997 Bytes
/
Stack_as_array.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include<stdio.h>
int stack[15];
int top=-1;
void creation(int item)
{
top=top+1;
stack[top]=item;
}
void display()
{
int i;
for(i=top;i>=0;i--)
{
printf("%d\n",stack[i]);
}
}
void push()
{
int a;
printf("Enter new element : ");
scanf("%d",&a);
if(top==14)
{
printf("Overflow");
}
else
{
top=top+1;
stack[top]=a;
}
}
void pop()
{
int old;
stack[top]=old;
top=top-1;
printf("Deleted element= %d",old);
}
int main()
{
int item,i,n,selection;
label:
printf("Enter 1 to create");
printf("\nEnter 2 to display");
printf("\nEnter 3 to insert an element");
printf("\nEnter 4 to delete an element");
printf("\nyour selection");
scanf("%d",&selection);
if(selection==1)
{
printf("Enter elements\n");
for(i=0;i<5;i++)
{
scanf("%d",&item);
creation(item);
}
goto label;
}
if(selection==2)
{
display();
goto label;
}
if(selection==3)
{
push();
goto label;
}
if(selection==4)
{
pop();
goto label;
}
}