Skip to content

Instantly share code, notes, and snippets.

@skelterjohn
Created December 27, 2017 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skelterjohn/699bb9d71e65f8fb4727c9828ed05b00 to your computer and use it in GitHub Desktop.
Save skelterjohn/699bb9d71e65f8fb4727c9828ed05b00 to your computer and use it in GitHub Desktop.
$ cat fpe.c
#include <stdio.h>
int main(int argc, char** argv) {
printf("%f\n", 1.0/3+1.0/3+1.0/3)
return 0
}
$ gcc -o fpe fpe.c
$ ./fpe
1.000000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment