First page
Back
Continue
Last page
Graphics
A SMALL C++ PROGRAM
// a small C++ program
#include <iostream>
using namespace std;
int main(void)
{
cout << "Hello world!" << endl;
return 0;
}