Saturday, 28 April 2012

Program Of Getline Manipulator In C++

#include<iostream.h>
#include<conio.h>
main()
{
clrscr();
const int max=80;
char str[max];
cout<<"Enter String=";
cout<<"String is="<<str;
getch();
}

No comments:

Post a Comment