If I am not mistaken Borland Turbo C++ doesn't support C++ strings (though it does have the string library).
It uses an array of chars to works as a string!
Or you could start it as an int, and just type_cast it to a string when you need to pull out individual digits. This way you can still use it in arithemetics and what not. I think if you start it as a string and convert it to an int it will create issues due to ASCII codes. I may be mistaken though