ATOF

Section: C Library Functions (3)
Updated: August 1, 1992
Index Return to Main Contents
 

NAME

atof, atoi, atol - convert strings to numbers  

SYNOPSIS

#include <stdlib.h>

double atof(const char *nptr);

int atoi(const char *nptr);

long atol(const char *nptr);
 

DESCRIPTION

These functions convert a string pointed to by nptr to floating, integer, and long integer representation respectively. The first unrecognized character ends the string.

Atof recognizes an optional string of spaces, then an optional sign, then a string of digits optionally containing a decimal point, then an optional `e' or `E' followed by an optionally signed integer.

Atoi and atol recognize an optional string of spaces, then an optional sign, then a string of digits.  

RETURN VALUE

Atof , atoi , and atol return the converted value.  

BUGS

There are no provisions for overflow.  

SEE ALSO

scanf(3)


 

Index

NAME
SYNOPSIS
DESCRIPTION
RETURN VALUE
BUGS
SEE ALSO

This document was created by man2html, using the manual pages.
Time: 00:57:01 GMT, September 26, 2024