//************************************************* // esempio di class template per implementare uno stack //************************************************ #include using namespace std; const int size=5; template class stack{ type stk[size]; int index; public: stack(){ index=0; for(int i=0;i stack1; stack1.push(12.3); stack1.push(4.5); stack1.push(7.6); cout<