Hey, >I'm using gcc and gcc-c++ on redhat 7.2. Is there any way to convert a >string (declared with string s;) to a char*? use s.c_str() that returns a const char* . Elm