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