Example #1
0
int main()
{
    int temp;
    CStack s;
    s.push(10);
    s.push(15);
    s.add();
    s.pop(temp);
    printf("%d, %d\n",temp, s.GetNumb());
    return 0;
}