home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / CENVIW9.ZIP / ASCII.CMM next >
Text File  |  1994-03-08  |  559b  |  20 lines

  1. /***************************************************
  2.  *** Ascii.cmm - Display the ASCII character set ***
  3.  *** ver.1                                       ***
  4.  ***************************************************/
  5.  
  6. #define  ROW_COUNT      20
  7. #define  COL_COUNT      13
  8.  
  9. Unprintables = "\a\b\t\r\n\032\033"
  10. for ( row = 0; row < ROW_COUNT; row++ ) {
  11.    for ( col = 0; col < COL_COUNT; col++ ) {
  12.       c = ROW_COUNT*col + row
  13.       if c < 256
  14.          printf("%c-%-3d ",(NULL==strchr(Unprintables,c))?c:'.',c)
  15.    }
  16.    printf("\n")
  17. }
  18.  
  19. getch();
  20.