Programs
Лабораторная работа №2
Вариант 4
Главная
Здесь ошибка
Код:
// Var4.cpp: определяет точку входа для консольного приложения. // #include "stdafx.h" #include #include using namespace std; class meow { private: int a, b; void nothing(); void somesthing() { cout << "Awesome" << endl; } public: void doit(int c) { a = c; b = c * c; } int showtime() { timenow(); return 1; } void now() { a = time(NULL); } char s[10][255]; meow() { s[0][0] = 'a'; } protected: int timenow() { return 1;; } int meowmeow[125]; }; int main() { meow cat; cat.doit(4); cat.now(); int getsss = cat.showtime(); cout << getsss << endl; return 0; }