home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat199.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <stdlib.h>
-
- void list_value(unsigned int value)
- {
- int mybase;
- char buf[8*sizeof(int)+1];
- for(mybase = 2; mybase < 36; ++mybase)
- printf("%s\n", utoa(value, buf, mybase));
- }
-
- void main()
- {
- unsigned int myvalue = 38;
- list_value(myvalue);
- }
-