//************************************************* //in this test we use object arrays not initialized //************************************************** #include using namespace std; //-------------------------------------------------- class object{ int a; public: object(int val){a=val;} //through overloading we can use object not initialized object(){}; void set(int va){a=va;} void show(){cout<<"....."<