/* This example shows using three possible types of value radix,
   first case is hexa (0x10), second octa (010) and the third - 
   you surely know... Try to change condition to ==,<=,< or >.
   In this listing, the result should be values from 0x10 to 0x8
*/ 


int a;				/* Declaration */

void main() {			/* Main function */
 for (a=0x10;a>=010;a=a-1) 	/* Try other conditions */
	printf(a);
}