✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Дан фрагмент программы.
1.class first{2. int a;3. public:4. first();5. first(int);6. int Get_a();};7.int main(){8. first my1;9. first my2(7);10. cout<<my1.Get_a<<″ ″<<my2.Get_a();11. return 0;}
В какой строке ошибка?