Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
#include <stdio.h> #include <stdlib.h> int main() { char s[] = "1903837276521308982"; unsigned long long ull = strtoull(s, NULL, 10); printf("%llu", ull); char ch = getchar(); return 0; } /* run: 1903837276521308982 */