This commit is contained in:
2025-09-15 11:59:44 +02:00
parent c6a0ca66ac
commit 8a3d77d5ca
8 changed files with 53 additions and 17 deletions

8
DEV1.1/TP05/tp5exo3.c Normal file
View File

@@ -0,0 +1,8 @@
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;
}
/* sa affiche les infinis positifi et négatif et nan (Not a Number)*/