summaryrefslogtreecommitdiff
path: root/test/math/rint.c
blob: 399fb90e36c25bca5923fd3a05f4686054dc4c8d (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <math.h>
#include <stdlib.h>
#include <stdio.h>

int main(void) {
    double d1, d2;
    d1 = 0.6;  d2 = rint(d1);
    printf("d1 = %f, d2 = %f\n", d1, d2);
    return 0;                            
}