Skip to content

Instantly share code, notes, and snippets.

View nightcoder26's full-sized avatar
🌱
Living

bhavitha. nightcoder26

🌱
Living
View GitHub Profile
@nightcoder26
nightcoder26 / pre_post_to_infix.c
Created March 21, 2023 17:29 — forked from priyadarshitathagat/pre_post_to_infix.c
Postfix to Infix and Prefix to Infix conversion in c using stacks
#include<stdio.h>
#include<conio.h>
#include<string.h>
#include<stdlib.h>
# define MAX 20
char str[MAX],stack[MAX];
int top=-1;
void push(char c)
{
stack[++top]=c;