[ create a new paste ] login | about

Link: http://codepad.org/QLggj8sy    [ raw code | output | fork ]

C, pasted on Jul 9:
1
2
3
4
5
6
7
8
#include <stdio.h>

int main (void)
{
  float f = 1.17;
  printf ("%.20f\n", f);
  return 0;
}


Output:
1
1.16999995708465576172


Create a new paste based on this one


Comments: