CTYPE.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

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