#include <stdio.h>
int main()
{
int first, second, add, subtract, multiply;
float divide;
{
int first, second, add, subtract, multiply;
float divide;
printf("Enter two integers\n");
scanf("%d%d", &first, &second);
scanf("%d%d", &first, &second);
add = first + second;
subtract = first - second;
multiply = first * second;
//typecasting
divide = first / (float) second;
subtract = first - second;
multiply = first * second;
//typecasting
divide = first / (float) second;
printf("Sum = %d\n", add);
printf("Difference = %d\n", subtract);
printf("Multiplication = %d\n", multiply);
printf("Division = %.2f\n", divide);
printf("Difference = %d\n", subtract);
printf("Multiplication = %d\n", multiply);
printf("Division = %.2f\n", divide);
return 0;
}
}
Output :
Enter two integers 3 4 Sum = 7 Difference = -1 Multiplication = 12 Division = 0.75
0 Comments