I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
#include <stdio.h>
int main()
{
int num1, num2;
int sum, sub, mult, mod;
float div;
printf("Enter first number : ");
scanf("%d", &num1);
printf("Enter second number : ");
scanf("%d", &num2);
sum = num1 + num2;
sub = num1 - num2;
mult = num1 * num2;
mod = num1 % num2;
div = (float)num1 / num2;
printf("Sum of num1 and num2 = %d \n", sum);
printf("Difference of num1 and num2 = %d \n", sub);
printf("Product of num1 and num2 = %d \n", mult);
printf("Modulus of num1 and num2 = %d \n", mod);
printf("Quotient of num1 and num2 = %f ", div);
return 0;
}
Solution:
I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
Result:
Enter first number : 5
Enter second number : 3
Sum of num1 and num2 = 8
Difference of num1 and num2 = 2
Product of num1 and num2 = 15
Modulus of num1 and num2 = 2
Quotient of num1 and num2 = 1.666667
need an explanation for this answer? contact us directly to get an explanation for this answer