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

isupper()函数

时间:2017-03-10 22:15:53      阅读:633      评论:0      收藏:0      [点我收藏+]

标签:href   int   英文字母   cte   英文   string   功能   print   type   

isupper()函数可以用来判断字符c是否为大写英文字母!

原型:extern int isupper(int c);
头文件:ctype.h
功能:判断字符c是否为大写英文字母
说明:当参数c为大写英文字母(A-Z)时,返回非零值,否则返回零。
附加说明: 此为宏定义,非真正函数。
范例:找出字符串str 中为大写英文字母的字符。
  1. #include <ctype.h>
  2. int main()
  3. {
  4. char str[] = "123c@#FDsP[e?";
  5. int i;
  6. for(i = 0; str[i] != 0; i++)
  7. if(isupper(str[i]))
  8. printf("%c is an uppercase character\n", str[i]);
  9. }
执行结果:
F is an uppercase character
D is an uppercase character
P is an uppercase character

isupper()函数

标签:href   int   英文字母   cte   英文   string   功能   print   type   

原文地址:http://www.cnblogs.com/ECJTUACM-873284962/p/6533067.html

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