#include <iostream>
namespace X
{
int k = 8;
}
int main()
{
using namespace X;
int k = 0;
std::cout << k;
return 0;
}
I am struggling to understand the difference between qualified and unqualified lookup, and how they deal with using namespace ; phrases
For now, I would like to make clear ?Here k causes qualified lookup right?