/-Hello_rus---------------------
#include <vcl.h>
#pragma hdrstop
//---------------------------------------------------------------------------
#include <iostream>
#include <windows>
#include <conio>
#pragma argsused
using namespace std;
ostream & operator << (ostream & out, char* s)
{
char buf [512], *p=buf;
CharToOem (s, buf);
while (*p)
out<<*p++;
return out;//Возврат ссылки на объект класса ostream.
}
int main()
{
cout << " Привет мир! " << endl;
getch ();
return 0;
}
//Это тоже работает. проверено на шестом борланде.