-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack.c
81 lines (76 loc) · 1.49 KB
/
stack.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
76
77
78
79
80
81
#include<stdio.h>
#define max_size 5
int top=-1;
int stack[max_size];
void push(int number)
{
if(top>=max_size-1)
{
printf("Stack overflow insertion not possible!!\n");
}
else
{
top++;
stack[top] = number;
printf("Successfully pushed %d\n",number);
}
}
void pop()
{
int del_element;
if(top==-1)
{
printf("Cannot pop.The stack is empty!!\n");
}
else
{
del_element=stack[top];
top--;
printf("The element %d was deleted\n",del_element);
}
}
void display()
{
if(top==-1)
{
printf("The stack is empty!!\n");
}
else
{
printf("The stack is: ");
for(int i=0;i<=top;i++)
{
printf("%d ",stack[i]);
}
printf("\n");
}
}
void main()
{
int ch,flag=0,number;
do
{
printf("1--Push\n2--Pop\n4--Exit\n");
printf("Enter your choice : ");
scanf("%d",&ch);
switch (ch)
{
case 1:
printf("Enter the element to be pushed :");
scanf("%d",&number);
push(number);
display();
break;
case 2:
pop();
display();
break;
case 4:
printf("Exiting...\n");
flag=1;
break;
default:printf("Invalid choice!!\n");
break;
}
}while(flag==0);
}