aboutsummaryrefslogtreecommitdiff
path: root/tests/core/test_fcvt.in
blob: 66b5adef855e306011a702c24c12e03fb04bd087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* This example borrowed from MSDN documentation */
        #include <stdlib.h>
        #include <stdio.h>

        int main() {
           int  decimal, sign;
           char *buffer;
           double source = 3.1415926535;

           buffer = fcvt(source, 7, &decimal, &sign);
           printf("source: %2.10f   buffer: '%s'   decimal: %d   sign: %d\n",
                   source, buffer, decimal, sign);
        }