assign value to a variable.


SUBMITTED BY: Nrupeshsinh

DATE: June 22, 2016, 11:42 a.m.

FORMAT: Text only

SIZE: 218 Bytes

HITS: 618

  1. # include<iostream.h>
  2. # include<conio.h>
  3. void main()
  4. {
  5. int a,b,x;
  6. clrscr();
  7. cout<<"Enter the value of A=";
  8. cin>>a;
  9. cout<<"Enter the value of B=";
  10. cin>>b;
  11. x=a+b;
  12. cout<<"Total Is ="<<x;
  13. getch();
  14. }

comments powered by Disqus