Code:add,sub,mult,div two numbers
#include <stdio.h>
void main()
{
int a,b,c;
clrscr();
printf(“please enter the first number “);
scanf(“%d”,&a);
printf(“please enter the second number “);
scanf(“%d”, &b);
c=a+b;
printf(“addition of %d and %d is %d”, a,b,c);;
c=a-b;
printf(“Substraction of %d and %d is %d”, a,b,c);;
c=a*b;
printf(“Multiplication of %d and %d is %d”, a,b,c);;
c=a/b;
printf(“Division of %d and %d is %d”, a,b,c);;
getch();
}