**fig3_54.txt** /* 1*/ // Empty a Stack, printing its contents. /* 2*/ // Bad algorithm. /* 3*/ template /* 4*/ void /* 5*/ Stack:: /* 6*/ Rec_Print_And_Empty( ) /* 7*/ { /* 8*/ if( !Is_Empty( ) ) /* 9*/ { /*10*/ cout << Pop_And_Top( ) << endl; /*11*/ Rec_Print_And_Empty( ); /*12*/ } /*13*/ }