[ create a new paste ] login | about

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

C, pasted on Feb 11:
1
2
3
4
5
6
7
8
#include <stdio.h>
#include <math.h>
int main()
{
    printf("%f",ceil(64.56));

    return 0;
}


Output:
1
65.000000


Create a new paste based on this one


Comments: