This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/gcvt.c

11 lines
193 B
C
Raw Permalink Normal View History

#include <stdio.h>
#include <stdlib.h>
void main()
{
char buffer[80];
printf( "%s\n", gcvt( -123.456789, 5, buffer ) );
printf( "%s\n", gcvt( 123.456789E+12, 5, buffer ) );
}