-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathReversingStringUsingStack.c
More file actions
56 lines (51 loc) · 956 Bytes
/
Copy pathReversingStringUsingStack.c
File metadata and controls
56 lines (51 loc) · 956 Bytes
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
//Write a C program to reverse a string using a stack.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define MAX 25
int stack[MAX], top = -1;
void push(char item)
{
if (top == MAX - 1)
{
printf("\nStack overflow");
exit(0);
}
else
{
top = top + 1;
stack[top] = item;
}
}
void pop()
{
char del;
if (top == -1)
{
printf("\nStack underflow");
exit(0);
}
else
{
del = stack[top];
top = top - 1;
printf("%c", del);
}
}
int main()
{
int i;
char str[MAX];
printf("\nEnter the string you want to reverse : ");
scanf("%[^\n]s", str);
for (i = 0; i < strlen(str); i++)
{
push(str[i]);
}
printf("Entered string is : %s\n",str);
printf("Revered string is : ");
for (i = 0; i < strlen(str); i++)
{
pop();
}
}