C Programming
by Al Stevens

Example 1: 

#include <iostream>
int main()
{
   std::cout << "hello world"
             << std::endl;
   return 0;
}

