Problem Statement : Implement stack as an abstract data type using singly linked list and use this ADT for conversion of infix expression to postfix, prefix and evaluation of postfix and prefix expression. Sample Input for Testing:
- (a+b)*c
- (a+b)/(c*d)
- (a+(bc))/(c-(db))
- ab/(c-d)+ef
- (a-z)(b+c-de)*f */