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