分类:
2008-07-18 15:58:24
#include(according to the spec, the first of those should work, and the compiler should know enough to use it to reference the real vector header file.)#include #include
#includeinstead of
#include
cout << "hello world!";However, newer compilers require that you either use
std::cout << "hello world!";or declare what namespace to use with the "using namespace" command.