✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Яке значення надрукує програма?
#include <iostream>
template<typename T>
struct Holder {
static int count;
};
template<typename T>
int Holder<T>::count = 0;
int main() {
Holder<int>::count = 3;
std::cout << Holder<int>::count;
}