✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
template <class A, int n > class my_template {A x [n]; / * ... * /};
my_template <char, 20 > y1;
my_template <int, 20 > y2;
my_template <char, 30 > y3;
my_template <int, 20 > y4;
Який з наступних операторів не містить помилки:
(C++)