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 >
Wrap
C/C++ Source or Header
|
1993-10-16
|
341b
|
16 lines
/* Demonstrates printing extended ASCII characters */
#include <stdio.h>
unsigned char x; /* Must be unsigned for extended ASCII */
main()
{
/* Print extended ASCII characters 180 through 203 */
for (x = 180; x < 204; x++)
{
printf("\nASCII code %d is character %c", x, x);
}
}