0
Delay between cout
Hello I want to know how to put a Delay between cout .Thanks!
1 Answer
+ 5
#include <iostream>
#include <ctime>
using namespace std;
void delay(int milliseconds){
clock_t goal = milliseconds + clock();
while(goal>clock());
}
int main(){
while(1){
cout << "Problem?" << endl;
delay(1000);
};
//That is self delay function
}