[ create a new paste ] login | about

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

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

int main(void)
{

printf("%d\n",40/13);
printf("%f\n",40.0/13.0);

return 0;
}


Output:
1
2
3
3.076923


Create a new paste based on this one


Comments: