c program to add,subtract,multiply,divide,find remainder

#include<stdio.h>
#include<conio.h>
int main()
{ int a, b,c;
clrscr();
printf(“Enter first number\n”);
scanf(“%d”,&a);
printf(“Enter second number\n”);
scanf(“%d”,&b);
c=a+b;
printf(“addition of %d and %d is %d\n”,a,b,c);
c=a-b;
printf(“subtraction of %d and %d is %d \n”,a,b,c);
c=a*b;
printf(“multiplication of %d and %d is %d \n”,a,b,c);
c=a/b;
printf(“division of %d and %d is %d \n”,a,b,c);
c=a%b;
printf(“remainder of %d and %d is %d\n”,a,b,c); 
     getch();   
   return 0;
}

Output:


c program to add,subtract,multiply,divide,find remainder