Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- libc - <b>strtoull</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
strtoull
========

Syntax
------

     #include <stdlib.h>
     
     unsigned long long strtoull(const char *s, char **endp, int base);

Description
-----------

This is just like `strtoll' (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));


See Also: strtoll

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson