Programs
Лабораторная работа №2
Вариант 8
Главная
Здесь ошибка
Код:
#include "stdafx.h" #include using namespace std; class TWO { float a, c, d; }; class ONE { void func() { text(); }; void meow() {}; void af() {}; TWO days; TWO mice; protected: void text() { cout << "text" << endl; } void good() {}; char mas[2][5]; public: void go() { func(); } char *str[3]; int bl; ONE() { str[0] = &mas[1][0]; } }; int main() { ONE object; object.go(); object.bl = 1; return 0; }