Tag Archives for Data Structure and Algorithm
Infix Expression Evaluation
Program for Infix Prefix and Infix to Postfix Conversion. #include<stdio.h> #include<math.h> #include<ctype.h> #define MAX 50 #define T stk[top] char stk[ MAX ], po[ MAX ], in[ MAX ]; int top = -1; struct list … Continue reading

