[ create a new paste ] login | about

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

C, pasted on Nov 1:
1
2
3
4
5
6
7
8
9
#include <stdio.h> 
  
  
 int main(void) 
 { 
     float answer = 1 / 10; 
     printf("%.20f\n", answer); 
     return 0; 
 }


Output:
1
0.00000000000000000000


Create a new paste based on this one


Comments: