I know how to convert a character array containing numbers to an integer using iostream:
char[] ar = "1234";
int num;
ar >> num;
but how would I convert the last four characters of that array to an int?
char[] ar = "sl34nfoe11intk1234";
int num;
????;
Is there a way to point to an element in the array and start streaming from there?
Ideally I would start streaming from max array size - 4.
ar >> numis valid C++ code? Seems like you forgot the stringstream. – Christian Rau Aug 27 '11 at 19:24char[] aris not valid C++ either. – wilhelmtell Aug 27 '11 at 19:28