We get to that point, c++, this chapter mainly introduce parts of
c++, and understand them with many code example.
hello world
first program "hello world", using stdcin
and out.
1 2 3 4 5 6 7 8
#include<iostream> intmain() { using std::cout; using std::endl;// only use the 2 elements in standard namespace cout << "Hello Buggy World \n"; return0; }