[ create a new paste ] login | about

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

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

int main () {

double test = 0.3;
printf("%0.5f", test);

}


Output:
1
2
0.30000
Exited: ExitFailure 7


Create a new paste based on this one


Comments: