diff --git a/C/main.c b/C/main.c new file mode 100644 index 0000000..d85b78d --- /dev/null +++ b/C/main.c @@ -0,0 +1,15 @@ +#include +#include + +int main() +{ + int a,b; + printf("enter two numbers"); + scanf("%d%d",&a,&b); + printf("the sum of two numbers=%d\n",a+b); + printf("the difference of two numbers=%d\n",a-b); + printf("the product of two numbers=%d\n",a*b); + printf("the quotient of two numbers=%d",a/b); + + +}