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

toupper(将小写字母转换成大写字母)

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

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

/*toupper(将小写字母转换成大写字母)

相关函数    isalpha,tolower
表头文件    #include<ctype.h>
定义函数    int toupper(int c);
函数说明    若参数c为小写字母则将该对映的大写字母返回。
返回值    返回转换后的大写字母,若不须转换则将参数c值返回。
附加说明    

范例    */
/* 将s字符串内的小写字母转换成大写字母 */
#include<ctype.h>
main()
{
  char s[]="aBcDeFgH12345;!#$";
  int i;
  printf("before toupper() : %s\n",s);
  for(i=0;i<sizeof(s);i++)
    s[i]=toupper(s[i]);
  printf("after toupper() : %s\n",s);
}
/*执行    
before toupper() : aBcDeFgH12345;!#$
after toupper() : ABCDEFGH12345;!#$
*/

 

toupper(将小写字母转换成大写字母)

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

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

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