CTYPE.C
Upload User: qq5388545
Upload Date: 2022-07-04
Package Size: 29849k
Code Size: 0k
Category:

GUI Develop

Development Platform:

C/C++

  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.  }