**fig3_55.txt** /* 1*/ // Empty a Stack, printing its contents. /* 2*/ // Nonrecursive: goto illustrates compiler's method. /* 3*/ // Don't use it yourself. /* 4*/ template /* 5*/ void /* 6*/ Stack:: /* 7*/ Nor_Print_And_Empty( ) /* 8*/ { /* 9*/ Top: /*10*/ if( !Is_Empty( ) ) /*11*/ { /*12*/ cout<< Pop_And_Top( ) << endl; /*13*/ goto Top; /*14*/ } /*15*/ }