#include #include // C++ supports strings! The std::string class and its methods // are defined in the string.h C++ standard library header. #include // The "using" keyword introduces part of a namespace, or an entire // namespace, into the current declarative region. using namespace std; int main(int argc, char **argv) { // NOTE: this is a string object allocated on the stack. string hello("Hello, World!"); cout << hello << endl; return EXIT_SUCCESS; }