InterviewSolution
Saved Bookmarks
| 1. |
Write a program to read two numbers and an operator and perform all the Arithmetic calculations |
|
Answer» Write a C PROGRAM to input two numbers and perform all arithmetic operations. How to perform all arithmetic OPERATION between two numbers in C programming. C program to find sum, DIFFERENCE, product, quotient and modulus of two given numbersExampleInputFirst number: 10Second number: 5OutputSum = 15Difference = 5Product = 50Quotient = 2Modulus = 0 |
|