This commit is contained in:
2025-03-24 11:36:01 +01:00
parent 0ecbdd4585
commit b9c451e95c
72 changed files with 2699 additions and 376 deletions

15
SCR1.2/TP10/disp.c Normal file
View File

@@ -0,0 +1,15 @@
#include<stdlib.h>
#include<stdio.h>
#include<unistd.h>
int main (int argc, char** argv)
{
while (1)
{
printf("%c",argv[1][0]);
fflush(stdout);
usleep(500000);
}
return EXIT_SUCCESS;
}