Index: [thread] [date] [subject] [author]
  From: Philip K. Warren <pkw@acpub.duke.edu>
  To  : 
  Date: Sun, 31 Jan 1999 18:18:16 -0500

Re: AtoI

Try this:
char temp = '5';
int f = atoi(&temp);

Remember that atoi takes a pointer as a parameter.

-- Philip


Index: [thread] [date] [subject] [author]