3.Subtraction Of Two Integer Number
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("\nEnter Frist Number");
scanf("%d",&a);
printf("Enter Second Number");
scanf("%d",&b);
c=a-b;
printf("answer is %d",c);
getch();
}
To Download This Source Code Please Click on Download Link.....!
---DOwnloAD---
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("\nEnter Frist Number");
scanf("%d",&a);
printf("Enter Second Number");
scanf("%d",&b);
c=a-b;
printf("answer is %d",c);
getch();
}
To Download This Source Code Please Click on Download Link.....!
---DOwnloAD---