//************************************** //this test is interested to constructor //inizialized and not, used for array //inizialized and dynamic allocation //*************************************** #include using namespace std; //--------------------------------------- class power{ int value; public: power(int i){value=i;} power(){} void setPower(int y){value=y;} int show(){cout<setPower(powe[i]); p->show(); } return 0; }