✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
1: template <class Т> class А {
2: int х;
3:};
4: template <class Т> class А <Т *> {
5: long х;
6:};
7: template <template <class U> class V> class C {
8: V <int> y;
9: V <int *> z;
10:};
11: C <A> c;
(C++)