[ create a new paste ] login | about

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

C, pasted on Dec 15:
1
2
3
4
5
6
7
8
9
#include <stdio.h>
int main()
{
   float a = 23456789.0;
   printf("%f    ",a);
   a += 1.0;
   printf("%f    ",a);
   return 0;
}


Output:
1
23456788.000000    23456788.000000    


Create a new paste based on this one


Comments: