Литература на C++
1) To be, or not to be, that is the question.
Перевод:
question = to_be() || !to_be(); //question = TRUE
* * *
2) <Произойдёт ч-л.>, когда рак на горе не свистнет.
Перевод:
if (Mountain.Cancer.Whistle()) <event-handler>;
* * *
3) У семи нянек дитя без глаза.
Перевод:
class Child: public Nanny1, public Nanny2, public Nanny3,
public Nanny4, public Nanny5, public Nanny6, public Nanny7
{BYTE EyesCount;
public:
Child() {EyesCount=2;}
VOID DeleteEye() {EyesCount- -;}};