I\'m trying to convert 64bit integer string to integer, but I don\'t know which one to use.
Try strtoull(), or strtoul(). The former is only in C99 and C++11, but it's usually widely available.
strtoull()
strtoul()