template class Stack { public: Stack(int = 10) ; ~Stack() { delete [] stackPtr ; } //<--- What does the \"~\" signify? int push(
That would be the destructor(freeing up any dynamic memory)