Hi,
I have a function that requires a char. I like working with STL strings because they seem a bit friendlier to me. I would like to do something like this.

string s;
s="Hello";

// ...convert string s to char myChar here..
myChar[]= ????
myFunction(int a, int b, int c, char myChar);

I hope I have explained this well enough.


Regards,
ChuckB