Hello World!
The best way to start learning C++ is to write our first program - Hello World. We will present the basic parts of a running program.
/* Our first C++ program: Hello World Print "Hello World!" */ #include <iostream> using namespace std; int main(void) { //print "Hello World!" cout << "Hello World!" << endl; getchar(); return 0; }

