[ create a new paste ] login | about

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

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

int main(){
	double x = 5.3, y = 0.1;
	printf("%.20f\n", x/y);
	return 0;
}


Output:
1
52.99999999999999289457


Create a new paste based on this one


Comments: