20 октября 2012 г.

C++ : Begin.

Выводим Hello!

main.cpp:

#include <iostream>

using namespace std;

int main () {
    cout << "helllo\n";
    return 0;
}


shell command:
с++ main.cpp