I'm defining a real type and I'm using strtod for the exponential way even though is untested and don't really know if it works but more imporantly I would like to know if there is any built in function like strtod for engineering notation and if there isn't, how can I do it?

Thanks in advance, Martin

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

strtod understands exponential notation. See, e.g., http://pubs.opengroup.org/onlinepubs/009695399/functions/strtod.html .

link|improve this answer
feedback

How about scanf() with the %g or %G format specifier (depending on whether you use e or E in your numbers)?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.