码迷,mamicode.com
首页 > 其他好文 > 详细

isascii(测试字符是否为ASCII码字符)

时间:2014-09-27 00:24:18      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   文件   sp   div   

/*isascii(测试字符是否为ASCII码字符)

相关函数    iscntrl
表头文件    #include <ctype.h>
定义函数    int isascii(int c);
函数说明    检查参数c是否为ASCII码字符,也就是判断c的范围是否在0到127之间。
返回值    若参数c为ASCII码字符,则返回TRUE,否则返回NULL ( 0 )。
附加说明    此为宏定义,非真正函数。

范例*/    
/* 判断int i是否具有对映的ASCII码字符 */
#include<stdio.h>
#include<ctype.h>
main()
{
  int i;
  for(i=125;i<130;i++)
    if(isascii(i))
      printf("%d is an ascii character:%c\n",i,i);
    else
      printf("%d is not an ascii character\n",i);
}
/*执行    
125 is an ascii character:}
126 is an ascii character:~
127 is an ascii character: 
128 is not an ascii character
129 is not an ascii character*/

 

isascii(测试字符是否为ASCII码字符)

标签:style   blog   color   io   ar   for   文件   sp   div   

原文地址:http://www.cnblogs.com/leijiangtao/p/3995712.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!