// C++ program to demonstrate the // use of flush function #include<iostream> #include<thread> #include<chrono> usingnamespacestd;
intmain(){
for (int i = 1; i <= 5; ++i)
{
cout << i << " " << flush;
this_thread::sleep_for(chrono::seconds(1));
}
return0;
}
// Below is C++ program #include<iostream> #include<thread> #include<chrono> usingnamespacestd;
intmain(){
for (int i = 1; i <= 5; ++i)
{
cout << i << " ";
this_thread::sleep_for(chrono::seconds(1));
}
cout << endl;
return0;
}
// Below is C++ program #include<iostream> #include<thread> #include<chrono> usingnamespacestd;
intmain(){
for (int i = 1; i <= 5; ++i)
{
cout << i << " ";
this_thread::sleep_for(chrono::seconds(1));
}
cout << endl;
return0;
}