0% found this document useful (0 votes)
19 views2 pages

I NFIX

Uploaded by

Ashwin Harikumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views2 pages

I NFIX

Uploaded by

Ashwin Harikumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

PROGRAM: INFIX TO POSTFIX CONVERSION

#include <stdio.h>
#include <ctype.h>
char stack[20];
int top = -1;
void push(char x) {
stack[++top] = x;
}
char pop() {
if (top == -1) {
return -1;
} else {
return stack[top--];
}
}
int priority(char x) {
if (x == '(')
return 0;
if (x == '+' || x == '-')
return 1;
if (x == '*' || x == '/')
return 2;
if (x == '^')
return 3;
return -1; }

void main() {
char infix[20], *e, x;
printf("Enter the expression: ");
scanf("%s", infix);
e = infix;
while (*e != '\0') {
if (isalnum(*e)) {
printf("%c", *e);
} else if (*e == '(') {
push(*e);
} else if (*e == ')') {
while ((x = pop()) != '(') {
printf("%c", x);
}
} else {
while (top != -1 && priority(stack[top]) >= priority(*e)) {
printf("%c", pop());
}
push(*e);
}
e++;
}

while (top != -1) {


printf("%c", pop());
}
}

OUTPUT
ubuntu@ubuntu-H81M-S:~/AshwinHarikumar-10$ ./a.out
Enter the expression: (2+2)*4/2
22+4*2/

You might also like