Subj : BORLAND C++BuilderX To : borland.public.cpp.borlandcpp From : "Malcolm Taylor" Date : Mon Mar 01 2004 06:50 pm Hi, I am very new to C++ and would like information on the following example: "#include #include "main.h" int main(int /*argc*/, char* /*argv*/[]) { std::cout << "Hello world!" << std::endl; std::cout << "Please enter a character and press return:"; std::cin.get(); std::cout << "Goodbye world!" << std::endl; return 0; }" 1. All of the books I have reviewed so far do not give information on std:: What is this and where can I find a book that teaches this method? 2. Although it doesn't appear to be a huge deal, how does "#include "main.h"" differ from say "#include " Thanks, Malcolm .