int main() { string hello = "Your text goes here"; int x=0; while ( hello[x] != ' ') { cout << hello[x]; Sleep(500); x++; }; return 0; }