Contact: aviboots(AT)netvision.net.il
40,903 questions
53,352 answers
573 users
#include <stdio.h> #include <stdlib.h> int main(void) { char s[] = "8493274"; long l = strtol(s, NULL ,0); printf("%ld", l); return 0; } /* run: 8493274 */