how to make a typing effect c 2b 2b

Solutions on MaxInterview for how to make a typing effect c 2b 2b by the best coders in the world

showing results for - "how to make a typing effect c 2b 2b"
Maris
05 Jan 2019
1int main()
2{
3string hello = "Your text goes here";
4int x=0;
5while ( hello[x] != '\0')
6{
7	cout << hello[x];
8	Sleep(500);
9	x++;
10};
11	return 0;
12}