**fig3_53.txt** /* 1*/ template /* 2*/ inline const Element_Type & /* 3*/ Stack:: /* 4*/ Pop_And_Top( ) /* 5*/ { /* 6*/ if( Is_Empty( ) ) /* 7*/ { /* 8*/ Error( "Stack is empty" ); /* 9*/ return 0; /*10*/ } /*11*/ return Stack_Array[ Top_Of_Stack-- ]; /*12*/ }