Showing posts with label Subtraction of two number. Show all posts
Showing posts with label Subtraction of two number. Show all posts

Sunday, 15 January 2012

Program To Find Substraction Of Two Numbers In C++

#include<iostream.h>
#include<conio.h>
 main()
 {
 clrscr();
 int a,b,c;
 cout<<"Enter first number=";
 cin>>a;
 cout<<"Enter second number=";
 cin>>b;
 cout<<c;
 getch();
 }