✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Determine the exact text printed to standard output stream by the following code fragment?
namespace A {
char c {'c'};
}
int main() {
namespace A { char c {'b'}; }
std::cout << A::c;
}