ASR3.1/Controle/Exercice 1/C2.c

8 lines
135 B
C
Raw Permalink Normal View History

2021-10-08 15:33:49 +02:00
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
int main(int argc, char const *argv[]) {
sleep(5);
return EXIT_SUCCESS;
}