Автор: StaFox (04.04.2009 в 01:29)
#include "iostream.h"
#include "windows.h"
...
char* Rus(const char* text);
char bufRus[256];
char* Rus(const char* text) {
CharToOem(text, bufRus);
return bufRus;
}
...
void main() {
cout << Rus("Ваш текст") << endl;
}
|