Class C++

#include 
using namespace std;
const int SIZE = 100;
template  class stack {
   SType stck[SIZE];
   int tos;
 public:
   stack(void);
   ~stack(void);
   void push(SType i);
   SType pop(void);
 };
template  stack::stack()
{
   tos = 0;
   cout << "Stack Initialized." << endl;
}
template  stack::~stack()
{
   cout << "Stack Destroyed." << endl;
}
template  void stack::push(SType i)
{
   if(tos==SIZE)
    {
      cout << "Stack is full." << endl;
      return;
    }
   stck[tos++] = i;
}
template  SType stack::pop(void)
{
   if(tos==0)
    {
      cout << "Stack underflow." << endl;
      return 0;
    }
   return stck[--tos];
}
int main(void)
{
   stack a;
   stack b;
   stack c;
   int i;
   a.push(1);
   a.push(2);
   b.push(99.3);
   b.push(-12.23);
   cout << a.pop() << " ";
   cout << a.pop() << " ";
   cout << b.pop() << " ";
   cout << b.pop() << endl;
   for(i=0; i<10; i++)
      c.push((char) 'A' + i);
   for(i=0; i<10; i++)
      cout << c.pop();
   cout << endl;
}