separate a string to separate characters in an aray

Hey all!
I have a problem that i cant seem to solve.
How can i separate a string into separate characters ?
I only need to know how to read a separate character of a string and how to find out the length of the string.
Thanks in advance! :D
A string is made out of separate characters
here is an example
1
2
3
string s = "Hello";
char c = s[0]; // 'H'
unsigned length = s.length(); // 5 
Topic archived. No new replies allowed.