✅ 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 // ...4 static void f() { s = c; }5 static void g() { s = m; }6private:7 const int c = 0;8 mutable int m;9 static int s;10};