To print
Hello, world.
on the screen, we need in C++ the following program
#include <iostream.h> void main() { cout << "Hello, world." << endl; }