-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain (19).c
69 lines (61 loc) · 2.14 KB
/
main (19).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
/******************************************************************************
Online C Compiler.
Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <stdio.h>
#define size 5
int stack[size];
int main()
{
int ch, num, item;
int top = -1;
while(1){
printf("------------Stack Operations------------\n");
printf("1. Push\n");
printf("2. Pop\n");
printf("3. Top\n");
printf("4. Display\n");
printf("5. Exit\n");
printf("Enter Your Choice: \n");
scanf("%d" , &ch);
switch(ch){
case 1: printf("Enter the number of elements you want to push in stack:");
scanf("%d" , &num);
if(size -1 < num){
printf("Stack Overflow!\n");
} else {
printf("Enter the elements: \n");
top++;
scanf("%d", stack[top]);
}
break;
case 2: if(top == -1){
printf("Stack Underflow!\n");
}else{
item = stack[top];
top--;
printf("%d" , item);
}
break;
case 3: if(top == -1) {
printf("Stack Underflow!\n");
}else {
printf("%d" , stack[top]);
}
break;
case 4: if(top == -1){
printf("Stack is Empty!\n");
}else {
for(int i = top; i <= 0 ; i--){
printf("%d\n" , stack[i]);
}
}
break;
case 5: exit(0);
break;
default: printf("Invalid Choice!");
}
}
return 0;
}