atoll() — Convert character string to signed long long

Format

#define _ISOC99_SOURCE
#include <stdlib.h>
long long atoll(const char *nptr);
Compile Requirement: Use of this function requires the long long data type.

General description

The function converts the initial portion of the string pointed to by nptr to a long long int . This is equivalent to strtoll(nptr, (char **)NULL, 10).

Returned value

If successful, atoll() returns the converted signed long long value, represented in the string. If unsuccessful, it returns an undefined value.