1. (C) Write a program to find the addition, subtraction, multiplication and division of two numbers.

1. (C) Write a program to find the addition, subtraction, multiplication and division of two numbers.
Write a program to find the addition, subtraction, multiplication and division of two numbers.


#include <stdio.h>
int main()
{
int first, second, add, subtract, multiply;
float divide;
printf("Enter two integers\n");
scanf("%d%d", &first, &second);
add = first + second;
subtract = first - second;
multiply = first * second;
divide = first / (float)second; //typecasting
printf("Sum = %d\n",add);
printf("Difference = %d\n",subtract);
printf("Multiplication = %d\n",multiply);
printf("Division = %.2f\n",divide);
return 0;
}
1. (C) Write a program to find the addition, subtraction, multiplication and division of two numbers. 1. (C) Write a program to find the addition, subtraction, multiplication and division of two numbers. Reviewed by admin on December 22, 2019 Rating: 5

No comments:

Powered by Blogger.