aboutsummaryrefslogtreecommitdiff
path: root/tests/core/test_fcvt.in
blob: 2e3fdbc6b49316f05dd5568ae5e3e79a64dbb460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* 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);
}