Ajout de fichiers des séances précédentes

This commit is contained in:
2025-09-15 12:46:39 +02:00
parent 09c121ea7c
commit f451fce786
6 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("%f\n", +1.0/0.0);
printf("%f\n", -1.0/0.0);
printf("%f\n", -0.0/0.0);
return EXIT_SUCCESS;
}