Answered step by step
Verified Expert Solution
Question
1 Approved Answer
write c program In this project, you will implement an expression tree to evaluate given binary arithmetic expressions. Your program must read expressions from a
write c program
In this project, you will implement an expression tree to evaluate given binary arithmetic expressions. Your program must read expressions from a file containing a single equation on each line. The equations are written as infix expressions. For each line the program should print the value resulting from evaluating the expression. Your program should support the following operations: + - * / \% ( ). White spaces or special characters are ignored. Example input: 3+5(102)1+1+1+18100/3/210083 In this case, the output should contain the following: 43 11 16 1 You should use an array implementation of your Stack library that you will use in this work. Your application should be able to show the following information through a proper menu of the application: 1. Read equations 2. Print equations 3. Evaluate using Expression tree 4. Print postfix expressions 5. Save to output file (postfix and results) 6. Exit a. There has to be adequate documentation and comments in the code (i.e., functions, loops, etc.); b. Your code should follow the code convention (i.e., spaces, indentations, etc.); and c. Your application should contain a menu to allow the user to select which option (s) he would like to run
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started