SyntaxFix
Write A Post
Hire A Developer
Questions
What is the proper #include for the function 'sleep()'?
sleep() isn't Standard C, but POSIX so it should be:
sleep()
#include <unistd.h>