Arithmetic operations in C
C program to perform basic arithmetic operations of addition, subtraction, multiplication, and division of two numbers/integers that user inputs.
Division in C
In C language, when we divide two integers, we get an integer result, e.g., 5/2 evaluates to 2.
As a general rule integer/integer = integer, float/integer = float and integer/float = float. So we convert denominator to float in our program, you may also write float in the numerator. This explicit conversion is known as typecasting.
output:
Enter two integers
2
3
Sum = 5
Difference = -1
Multiplication = 6
Division = 0.67
need an explanation for this answer? contact us directly to get an explanation for this answer