#include "scope.h" #include void test_obj2(){ int global_i = 5; int global_def = 300; cout << "Global Declared Variable ==>" << global_i << endl; cout << "Global defined Variable ==>" << global_def << endl; }