Simple Calculator In C Language

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Here is an example of a simple calculator program written in C language:

Copy code

#include <stdio.h> int main() {    double num1, num2;    char operator;    printf("Enter an operator (+, -, *, /): ");    scanf("%c", &operator);    printf("Enter two operands: ");    scanf("%lf %lf", &num1, &num2);    switch(operator) {        case '+':            printf("%.1lf + %.1lf = %.1lf", num1, num2, num1 + num2);            break;        case '-':            printf("%.1lf - %.1lf = %.1lf", num1, num2, num1 - num2);            break;        case '*':            printf("%.1lf * %.1lf = %.1lf", num1, num2, num1 * num2);            break;        case '/':            printf("%.1lf / %.1lf = %.1lf", num1, num2, num1 / num2);            break;        // operator doesn't match any case constant        default:            printf("Error! operator is not correct");    }        return 0; }

This program prompts the user to enter an operator (one of +, -, *, or /) and two operands. It then performs the specified operation and prints the result to the screen. The program uses a switch statement to determine which operation to perform based on the operator entered by the user.

5. Flow Control

0 Comments

Start the conversation!

Be the first to share your thoughts

Frequently Asked Questions About Sciaku Courses & Services

Quick answers to common questions about our courses, quizzes, and learning platform

Didn't find what you're looking for?

help_center Contact Support