Given the following code, what namespace does display3 belong to?
{
void print();
void display1(){};
}
namespace ns2
{
void print();
void display2(){};
}
void display3();
int main()
{
using namespace ns1;
using namespace ns2;
display1();
display2();
return 0;
}
void display3()
{
}
global
Computer Science & Information Technology
You might also like to view...
Encrypted File System is available in all versions of Windows Vista
Indicate whether the statement is true or false
Computer Science & Information Technology
Software used to communicate between the operating system and an optical drive is called
A) Application software B) A patch C) A service pack D) A device driver
Computer Science & Information Technology