home *** CD-ROM | disk | FTP | other *** search
- main() /* printf.c -- illustrates a bit of the power of printf() */
- {
- int a;
- printf("Type a character to see its decimal, octal and hex values.\n");
- a = getchar();
- printf("\n%c equals %d in decimal, %o in octal and %x in hexidecimal.\n", a, a, a, a);
- }
-