summaryrefslogtreecommitdiff
path: root/test/math/rint.c
blob: 04c195385896fd6f4c4289394eeb4f74990fb046 (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;
}