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

18. August 2009 by Jishnu
Categories: C Programming | Tags: | 3 comments

Newer posts →