/* ECP: FILEname=fig4_18.c */ /* 1*/ void /* 2*/ PrintBinary( unsigned int N ) /* 3*/ { /* 4*/ if( N >= 2 ) /* 5*/ PrintBinary( N >> 1 ); /* All The Other Bits */ /* 6*/ printf( "%d", N & 01 ); /* Least Significant Bit */ /* 7*/ }