-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathpostfixevaln.c
52 lines (52 loc) · 958 Bytes
/
postfixevaln.c
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
#include <stdio.h>
#include <stdlib.h>
#include<string.h>
char c[50];
int top=-1;
float op1,op2,r,a;
float s[50];
int push(int top,float tok){
s[++top]=tok;
return top;
}
float pop(int top){
r=s[top];
return r;
}
int operate(int top,char tok){
if(top==-1)
return top;
op1=pop(top);
top=top-1;
op2=pop(top);
top=top-1;
switch(tok){
case '+':a=op2+op1;
top=push(top,a);
break;
case '-':a=op2-op1;
top=push(top,a);
break;
case '*':a=op2*op1;
top=push(top,a);
break;
case '/':a=op2/op1;
top=push(top,a);
break;
}
return top;
}
int main(){
printf("Enter postfix expression:\n");
scanf("%s",c);
for(int i=0;i<strlen(c);i++){
char tok=c[i];
if((tok=='+')||(tok=='-')||(tok=='*')||(tok=='/'))
top=operate(top,tok);
else
top=push(top,atof(&tok));
}
top=pop(top);
printf("Result is : %.2f",r);
return 0;
}