Answers for "how to make a typing effect c++"

C++
0

how to make a typing effect c++

int main()
{
string hello = "Your text goes here";
int x=0;
while ( hello[x] != '\0')
{
	cout << hello[x];
	Sleep(500);
	x++;
};
	return 0;
}
Posted by: Guest on August-05-2020

Browse Popular Code Answers by Language