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