This commit is contained in:
2026-09-14 10:44:11 +02:00
parent 6dbd74db95
commit bf705d701d
9 changed files with 52 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#include <stdlib.h>
#include <stdio.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;
}