9 lines
85 B
C
9 lines
85 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
double x;
|
||
|
|
||
|
x = atof( "3.1415926" );
|
||
|
}
|