WAP To Print Subtraction Of Two No

#include<iostream.h>
#include<conio.h>
Void main()
{   clrscr();
     Int value 1,value 2,sub;
     cout<<”Enter the first value”;
      cin>>value 1;
      cout<<”Enter second value”;
      cin>>value 2;
      sub=value 1-value 2;
       cout<<”The subtraction of given values is”;
      cout<<sub;
      getch();

  }

Comments

Popular Posts