#include #include "scope.h" using namespace std; int global_i = 25; int global_def; int main(int argv, char * argc[]){ cout << "Global Declare " << global_i << endl; cout << "Global define " << global_def << endl; test_obj(); test_obj2(); //show global properites cout << "Global Declare " << global_i << endl; cout << "Global define " << global_def << endl; return 0; }