C++ examples for Language Basics:Hello World
Saying Hello with C++
#include <iostream> // Stream declarations using namespace std; int main() {/*from w w w .j a va2 s . co m*/ cout << "Hello, World! I am " << 8 << " Today!" << endl; }