Question: (Programming C) Please use Enter the statement for printf from each every row. Also Enter the statement:. From the blue box. 6.10) Write a program
(Programming C)

Please use "Enter the statement" for printf from each every row. Also "Enter the statement:". From the blue box.
6.10) Write a program to model a simple calculator. Each data line should consist of the next operation to be performed from the list below and the right operand. Your Accumulator's initial value SHOULD be 0 . You need a function scan_data with two output parameters that returns the operator and right operand scanned from a data line. You need a function do_next_op that performs the required operation and saves the value in accumulator. do_next_op takes in the operand, value and accumulator. The valid operators are: + add e.g input =>+5.0 - subtract e.g input =>5.0 * multiply e.g input =>5.0 / divide e.g input =>/5.0 ^ power e.g input =>5.0 q quit e.g input =>q0 Note: Numbers in your output should be rounded to 1 decimal place. SAMPLE RUN \#4: /Calculator Highlight: Show Highlighted Only Enter the statement: +5.0 Result so far is 5.0 Enter the statement:- 2 Result so far is 3.0 Enter the statement: 44 Result so far is 12.0 Enter the statement:/ 2.0 Result so far is 6.0 Enter the statement: 2 Result so far is 36.0 Enter the statement:q 0 Final result is 36.0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
