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/strtod.c

11 lines
155 B
C
Raw Normal View History

#include <stdio.h>
#include <stdlib.h>
void main()
{
double pi;
pi = strtod( "3.141592653589793", NULL );
printf( "pi=%17.15f\n",pi );
}