atof()

Erik Trulsson ertr1013@student.uu.se
Mon Aug 19 11:18:00 GMT 2002


On Mon, Aug 19, 2002 at 10:49:53AM -0700, Reinaldo Nolasco Sanches wrote:
> 
> I have a problem with atof()... and I don't understand because it...
> When I use atof() to get a value of a string... and put in my double var, the value is not the
> same...

This is not the right list for this kind of question but I will answer
anyway.  (This list is for discussion of the development of gcc, not
how to use gcc.)

If you use atof() you need to include stdlib.h first to get the
prototype.  Otherwise the compiler will assume atof() returns an int
and thus generate bad code.

> 
> I make a little example...
> 
> #include <stdio.h>
> 
> int main()
> {


-- 
<Insert your favourite quote here.>
Erik Trulsson
ertr1013@student.uu.se



More information about the Gcc mailing list