I got a question about c++ strings.
Let's say string text = "0R14"
and I access each element using text[0],text[1] etc
does text[0] return an integer 0? or a character '0'?
if it doesn't return an integer, how do I convert individual string element to integer type if I need to do integer calculations?