I can’t find a viable guide, so I ask, how can I postpone a function in C, in other words, how to make the program wait a certain number of seconds before continuing with other functions?
For instance:
printf("First Function.\n");
printf("Second function executed after certain amount of seconds");
I want to know which team I use to make this happen?
delay();
doesn't work for me, by the way.
I have to add, that sleep()doesn't work either.
source
share