#include <stdlib.h> unsigned long long strtoull(const char *s, char **endp, int base);
This is just like strtoll
(see section strtoll) except that the result
is unsigned.
The value.
not ANSI, not POSIX
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.