i need help!!! i wan the dots to appear one by one. but i got errors. 'sleep' is not a member of 'global namespace' and 'sleep' is undeclared identifier.
#include <stdio.h>

main()
{
int counter;

for(counter=0;counter<10;counter++)
{
printf(".\n");
sleep(?????);
}

return 0;
}