Int size; //size is variable
cout<<"enter size";
cin>>size;
Inventory p[size];
/*Inventory is a class.p is an
object of inventory class.*/
I want to implement array object with size variable but I'm getting error "expression mush have a constant value"