9 Jan 2015

Program: Subtraction of two number



#include<stdio.h>
#include<conio.h>
Void main()
{
int  a,b,sum;
clrscr();
printf("Enter the value of  a and b:\n");
scanf("%d%d",&a,&b);
sum=a-b;
printf("\nsub=%d",sum);
getch();
}

No comments:

Post a Comment