✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
¿Qué se puede afirmar con certeza sobre el siguiente fragmento de código?
1class C {2public:3 C(int x) { /* ... */ }4 // ...5}; 6C operator +(const C& x, const C& y) { /* ... */ } 7int x; 8// ... 9C c(x);10C d(x + c);