mihajlv
mihajlv

Reputation: 2315

Does any one know of a atolf c function?

I am looking for a function similar to atol (char * to long int) but atofl (char to long double), does anyone know of a library that does this, or a simple way to do this, since using atof on "0.00000005" casts off the 5? Thanks.

Upvotes: 1

Views: 1818

Answers (2)

MYMNeo
MYMNeo

Reputation: 836

I think you have use the wrong argument of printf, so you only saw the console giving you "0.000000", you can try

printf("%0.10f", atof(str_num));

to show the your number, and you will find what you want.

Upvotes: 2

Some programmer dude
Some programmer dude

Reputation: 409216

There is a function called strtod that does what you want.

Upvotes: 1

Related Questions