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
English,
2 months ago
Political Science,
2 months ago
Computer Science,
4 months ago
Math,
11 months ago