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

isupper(测试字符是否为大写英文字母)

时间:2014-09-27 00:22:29      阅读:265      评论:0      收藏:0      [点我收藏+]

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

/*isupper(测试字符是否为大写英文字母)

相关函数    isalpha,islower
表头文件    #include<ctype.h>
定义函数    int isupper(int c)
函数说明    检查参数c是否为大写英文字母。
返回值    若参数c为大写英文字母,则返回TRUE,否则返回NULL(0)。
附加说明    此为宏定义,非真正函数

范例    */
/*找出字符串str中为大写英文字母的字符*/
#include <ctype.h>
#include<stdio.h>
main()
{
  char str[]="123c@#FDsP[e?";
  int i;
  for(i=0;str[i]!=0;i++)
   if(isupper(str[i])) printf("%c is an uppercase character\n",str[i]);
}
/*执行    
F is an uppercase character
D is an uppercase character
P is an uppercase character*/

 

isupper(测试字符是否为大写英文字母)

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

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

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