C++ - Hello world =============== Public domain ******************************************************************************** // a small C++ program #include int main() { std::cout << "Hello, world!" << std::endl; return 0; } ******************************************************************************** // specific using-declaration #include using std::cout; int main() { cout << "Hello, world!" << std::endl; return 0; } ******************************************************************************** // Compile: g++ -Wall -ohello hello.cxx #include using namespace std; int main() { cout << "Hello World !!!\n"; return 0; } ******************************************************************************** _BY: Pejman Moghadam_ _TAG: cpp, hello-world_ _DATE: 2011-09-16 22:59:52_