ads

Sunday, 28 August 2016

C PROGRAM TO PERFORM BASIC ARITHMETIC OPERATIONS

#include <stdio.h>
#include <conio.h> 
void 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 / second;    
   printf("Sum = %d\n",add);
   printf("Difference = %d\n",subtract);
   printf("Multiplication = %d\n",multiply);
   printf("Division = %f\n",divide); 
   getch();
}

No comments:

Post a Comment