I need to get string array from string line. It is possible ?
main(){
string x = "This is string";
//do something, function or... i don't know...
//result
cout << string[0] << string[1] << string[2] << endl;
//cout << "This" << "is" << "string" << endl;
}
How to do this array ??! Ty ;)