Для следующей программы: #include <iostream> struct Foo { Foo() { std::cout <<...
Учитывая следующий базовый класс: class Base { int a, b; public: Base(int a, int b=42): a(a), b(b)...
Вот класс foo: template <typename T> struct foo { foo() { t = nullptr; } foo(T* p, bool flag)...