reverse the string using stack
Answers
Answered by
0
Answer:
Program To Reverse a String using Stack
#include <stdio.h>
#include <string.h>
#define max 100.
int top,stack[max];
void push(char x){
// Push(Inserting Element in stack) operation.
if(top == max-1){
printf("stack overflow")
Answered by
0
Answer:
hi hi hi hi hi hi hi hi hi hi hi
Explanation:
hi hi hi hi hi hi hi hi hi hi hi pls mark as brainlyest everyone is just thanking me no brainlyest pls bro once
Similar questions
Math,
1 month ago
Computer Science,
1 month ago
History,
1 month ago
Computer Science,
2 months ago
Math,
9 months ago