#include using namespace std; void print_obj(); namespace nt { void print() { cout << "Hello from namespace\n"; } } int main() { nt::print(); print_obj(); return 0; }