Search
 
SCRIPT & CODE EXAMPLE
 

CPP

how to make a typing effect c++

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

PREVIOUS NEXT
Code Example
Cpp :: armstrong number in cpp 
Cpp :: include cpp 
Cpp :: how to take space separated input in c++ 
Cpp :: How to pause a c++ program. 
Cpp :: overload stream insert cpp 
Cpp :: c++ programming language 
Cpp :: splice string in c++ 
Cpp :: string to char* 
Cpp :: c++ vector extend vector 
Cpp :: c++ reference 
Cpp :: c++ iterate over vector of pointers 
Cpp :: append string cpp 
Cpp :: string.begin() c++ 
Cpp :: detect end of user input cpp 
Cpp :: indexing strings in c++ 
Cpp :: c++ pi float 
Cpp :: map declaration c++ 
Cpp :: filling 2d array with 0 c++ 
Cpp :: cout c++ 
Cpp :: log in c++ 
Cpp :: 3d vector c++ resize 
Cpp :: str remove char c++ 
Cpp :: Sort html elements in Jquery on condition 
Cpp :: c detect os 
Cpp :: how to change colour image to grey in opencv c++ 
Cpp :: stack c++ 
Cpp :: print hello world in c++ 
Cpp :: print hello world c++ 
Cpp :: string format decimal places c++ 
Cpp :: c++ initialise array 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =