Write a C++ Program for cin to read.


SUBMITTED BY: Nrupeshsinh

DATE: June 22, 2016, noon

FORMAT: Text only

SIZE: 169 Bytes

HITS: 652

  1. # include<iostream.h>
  2. # include<conio.h>
  3. void main()
  4. {
  5. clrscr();
  6. char name[20];
  7. cout<<"Enter Name :";
  8. cin>>name;
  9. cout<<"Your Name Is :"<<name;
  10. getch();
  11. }

comments powered by Disqus