Go to the first, previous, next, last section, table of contents.


strtol

Syntax

#include <stdlib.h>

long strtol(const char *s, char **endp, int base);

Description

This function converts as much of s as looks like an appropriate number into the value of that number. If endp is not a null pointer, *endp is set to point to the first unused character.

The base argument indicates what base the digits (or letters) should be treated as. If base is zero, the base is determined by looking for 0x, 0X, or 0 as the first part of the string, and sets the base used to 16, 16, or 8 if it finds one. The default base is 10 if none of those prefixes are found.

Return Value

The value.

Portability

ANSI, POSIX

Example

printf("Enter a number: "); fflush(stdout);
gets(buf);
char *bp;
printf("The value is %d\n", strtol(buf, &bp, 0));


Go to the first, previous, next, last section, table of contents.