Question 3

Code:
  string somestring ;

Question: Which of the following choices will convert a standard C++ string object "somestring" to a C string?

  1. Copy.somestring () ;
  2. somestring.c_str ()
  3. std::cstring (somestring)
  4. (char *) somestring
  5. &somestring [1]



Leo Liberti 2008-01-12