Table of Contents
Previous Section Next Section

atoll

#include <stdlib.h>long long int atoll(const char *str);

atoll( ) was added by C99.

The atoll( ) function converts the string pointed to by str into a long long int value. It is otherwise similar to atol( ).

Related functions are atof( ), atoi( ), and atol( ).


Table of Contents
Previous Section Next Section