Contact: aviboots(AT)netvision.net.il
40,954 questions
53,418 answers
573 users
#include <stdio.h> #include <stdint.h> #include <inttypes.h> int main() { char s[] = "8593879350"; uintmax_t uimax = strtoumax(s, NULL, 10); printf("%ju\n", uimax); char ch = getchar(); return 0; } /* run: 8593879350 */