Write a C++ Program to read int value from keyboard.


SUBMITTED BY: Nrupeshsinh

DATE: June 22, 2016, 12:01 p.m.

FORMAT: Text only

SIZE: 155 Bytes

HITS: 625

  1. # include<iostream.h>
  2. # include<conio.h>
  3. void main()
  4. {
  5. clrscr();
  6. int n;
  7. cout<<"Enter value :";
  8. cin>>n;
  9. cout<<"You Entered :"<<n;
  10. getch();
  11. }

comments powered by Disqus