home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / lang / c / 12579 < prev    next >
Encoding:
Text File  |  1992-08-20  |  1.1 KB  |  32 lines

  1. Newsgroups: comp.lang.c
  2. Path: sparky!uunet!wupost!zaphod.mps.ohio-state.edu!rpi!sarah!cook!karp.albany.edu!ganesh
  3. From: ganesh@cs.albany.edu (Ganesh Murugesan)
  4. Subject: Re: problems with atof() 
  5. In-Reply-To: nilo@atdigarfield.cern.ch's message of Thu, 20 Aug 1992 12:52:52 GMT
  6. Message-ID: <GANESH.92Aug20121638@karp.albany.edu>
  7. Originator: ganesh@karp.albany.edu
  8. Sender: ganesh@cs.albany.edu (Ganesh Murugesan)
  9. Organization: Computer Science Department, SUNY at Albany, Albany, NY 12222
  10. References: <1992Aug20.125252.3451@dxcern.cern.ch>
  11. Date: Thu, 20 Aug 1992 17:16:37 GMT
  12. Lines: 18
  13.  
  14. In article <1992Aug20.125252.3451@dxcern.cern.ch> nilo@atdigarfield.cern.ch (Operator) writes:
  15.  
  16. >   Hello!
  17. >
  18. >   I have a problem withe the atof() function, you know string to double 
  19. >  conversion. 
  20. >   I can not figure out where the error is, so any help will be really really appreciated.
  21. >
  22.  
  23.  
  24. Include  <math.h> and it will work. Else C compiler takes atof
  25. return value as int by default and hence returns a junk value.
  26.  
  27. Also may be better to link the math libraary lm while compiling.
  28. It works if U do these.
  29.  
  30. Ganesh
  31.  
  32.