sleepsh/main.c

12 lines
135 B
C
Raw Normal View History

2024-10-14 15:43:16 +03:00
#include <stdio.h>
#include <unistd.h>
int main() {
while (1) {
sleep(20);
printf("*");
fflush(NULL);
}
return 0;
}