home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list10_2.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  341b  |  16 lines

  1.   /* Demonstrates printing extended ASCII characters */
  2.  
  3.   #include <stdio.h>
  4.  
  5.   unsigned char x;    /* Must be unsigned for extended ASCII */
  6.  
  7.   main()
  8.   {
  9.       /* Print extended ASCII characters 180 through 203 */
  10.  
  11.      for (x = 180; x < 204; x++)
  12.      {
  13.          printf("\nASCII code %d is character %c", x, x);
  14.      }
  15.  }
  16.