www.delorie.com/djgpp/doc/libc-2.01/libc_629.html   search  
Go to the first, previous, next, last section, table of contents.


strtoull

Syntax

#include <stdlib.h>

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

Description

This is just like strtoll (see section strtoll) except that the result is unsigned.

Return Value

The value.

Example

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


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

  prev next   webmaster     delorie software   privacy  
  Copyright © 1997     Updated Apr 1997