This commit is contained in:
Simoes Lukas
2025-01-30 16:07:12 +01:00
parent 59f7eead89
commit 2217e7986c
62 changed files with 4609 additions and 49 deletions

13
DEV1.1/CM3/blague.c Normal file
View File

@@ -0,0 +1,13 @@
#include<stdlib.h>
#include<stdio.h>
#include<time.h>
int main(void) {
srand(time(NULL));
if (rand()%2) {
printf("Ϳоie !\n");
} else {
printf("Désespoir !\n");
}
return EXIT_SUCCESS;
}