Ctype.c
Upload User: dq031136
Upload Date: 2022-08-08
Package Size: 802k
Code Size: 0k
Development Platform:

C++ Builder

  1. #include <stdio.h>
  2. #include <ctype.h>
  3. void main(void)
  4.  {
  5.    int ascii_char;
  6.    for (ascii_char = 0; ascii_char < 128; ascii_char++)
  7.      if (isprint(ascii_char))
  8.        printf("ASCII value %d setting (hex) %x ASCII %cn",  
  9.          ascii_char, _ctype[ascii_char], ascii_char);
  10.      else
  11.        printf("ASCII value %d setting (hex) %x ASCII %cn",  
  12.          ascii_char, _ctype[ascii_char], ascii_char);
  13.  }