✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
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;
}