#include<iostream>
#include<windows.h>
#include<string.h>
using namespace std;
int main()
{ cout<<"calmchicken";
char ge[500];
cout<<"\n\t\t\tEnter your lines(max limit 500):";
cin.getline(ge,500);
int x=strlen(ge);
int xtime=0;
while(xtime<100)
{
cout<<"\n"<<++xtime<<",";
cout.write(ge,x);
Sleep(150);
}
}
#include<windows.h>
#include<string.h>
using namespace std;
int main()
{ cout<<"calmchicken";
char ge[500];
cout<<"\n\t\t\tEnter your lines(max limit 500):";
cin.getline(ge,500);
int x=strlen(ge);
int xtime=0;
while(xtime<100)
{
cout<<"\n"<<++xtime<<",";
cout.write(ge,x);
Sleep(150);
}
}