10 lines
171 B
C
10 lines
171 B
C
#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;
|
|
}
|