C++ String Declaring
C++ supplies a string
class that can be used like this:
#include <string>
#include <iostream>
int main() {
std::string Something = "Some text";
std::cout << Something << std::endl;
}
using the standard <string>
header
std::string Something = "Some Text";
http://www.dreamincode.net/forums/topic/42209-c-strings/