Is it possible to convert a string to a char?

I ask as I am inputting strings from a text file, some of which are numbers so come in as "4" = a string.

atoi will only convert char to int so I need to convert the string to a char in order to get an integer out of it - or is ther a function to convert string to integer?