hello peepz after some while !
im trying to continue from where i left last time
now at char strings
#include <iostream.h>
int main()
{
char hello [4];
cout << "say sth and i will repeat\n";
cin.getline (hello,4);
cout << hello;
return 0;
}
see hello is limited to 4....what if i dont want any limit?
the code with no limit can explain enuf i hope
thanx
