C Program to Make a Simple Calculator using if/else statements

A simple calculator includes addition, subtraction, multiplication, and division. This calculator programĀ in C helps the user to enter the Operator (+, -, *, or /) and two values. Using those two values and operand, it will perform Arithmetic Operations. You can use other methods also to solve this problem. This is the simplest way one…