home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / PRINTF.C < prev    next >
Encoding:
Text File  |  1985-02-17  |  272 b   |  9 lines

  1.     main()    /* printf.c -- illustrates a bit of the power of printf() */
  2.     {
  3.     int a;
  4.     printf("Type a character to see its decimal, octal and hex values.\n");
  5.     a = getchar();
  6.     printf("\n%c equals %d in decimal, %o in octal and %x in hexidecimal.\n", a, a, a, a);
  7.     } 
  8.     
  9.