Given the following code, what namespace does display3 belong to?

namespace ns1
{
void print();
void display1(){};
}

namespace ns2
{
void print();
void display2(){};
}

namespace
{
void display3();
}
int main()
{
using namespace ns1;
using namespace ns2;
display1();
display2();
return 0;
}

namespace
{
void display3()
{
}
}

the unnamed namespace

Computer Science & Information Technology

You might also like to view...

When you are adding a server to an existing network, which of the following selections would you choose if you want the server to belong to the domain, but not run Active Directory or participate in managing directory services?

A. guest server B. domain server C. member server D. virtual server

Computer Science & Information Technology

Only one-dimensional arrays can be passed as parameters.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology