/* ECP: FILEname=fig11_2.c */ /* 1*/ /* Print N As A Decimal Number */ /* 2*/ void /* 3*/ PrintDecimal( unsigned int N ) /* 4*/ { /* 5*/ if( N >= 10 ) /* 6*/ PrintDecimal( N / 10 ); /* 7*/ putchar( '0' + N % 10 ); /* 8*/ }