*******Write a program to Subtraction in C *******
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr(); //Previous screen clear
int a,b,c;
printf("Enter Two Num:");
scanf("%d %d",&a,&b);
c=a-b;
printf("The Sub is %d\n",c);
getch();
}
*************************************Output****************************************
Enter Two Num : 10 5
The Sub is : 5
No comments
Welcome to saveracom.blogspot.com