**fig3_45.txt** /* 1*/ template /* 2*/ inline Element_Type /* 3*/ Stack:: /* 4*/ Pop_And_Top( ) /* 5*/ { /* 6*/ Element_Type Top_Element = Top( ); /* 7*/ if( !Is_Empty( ) ) /* 8*/ Pop( ); /* 9*/ return Top_Element; /*10*/ }