Assignment to develop a non-scientific calculator using C Language-81998
Reference For this assignment, you are required to develop a non-scientific calculator using C. Your calculator should only solve summation, subtraction, division, product, square root and square expressions. Utilizing the math.h header for your program, your calculator should start by prompting the user to enter a two-or-more-operand mathematical equation just like how you would using a non-scientific calculator. Your program should then display the correct answer and the user will have the choice to either continue using the calculator with the current answer to perform further calculations or end the program. Your program should also have a help function to display all the functions of the calculator. A sample output of the program when the user enters “help” is shown below: Your calculator must have the following additional functionalities and features: Your calculator should display values accurate up to 6 decimal places. For square and squar...