#include<iostream.h>
#include<conio.h>
main()
{
clrscr();
const int max=80;
char str[max];
cout<<"\n enter string=";
cin.get(str,max,'*');
cout<<"string is="<<str;
getch();
}
----------------------------------------------
Delimiter Manipulator is used to provide or give the space before the output .Simply its the part of manipulators
No comments:
Post a Comment