This commit is contained in:
Emmanuel Srivastava
2025-01-21 15:05:48 +01:00
parent a7a3e8e9e8
commit d582a5055b
4 changed files with 129 additions and 0 deletions

13
DEV.1.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;
}