函数名: toupper
头文件:<ctype.h>
函数原型: int touppper(int ch);
功 能: 把小写字母转换为大写字母,不是小写字母的不变
参数: int ch 待转换的字符
返回值: 返回转换后的字符
程序例: 把小写字母转换为大写字母
#include<ctype.h>#include<stdio.h>intmain(){charch1,ch2;printf(inputacharacter:);scanf(%c,&ch1);ch2=toupper(ch1);printf(transform%cto%c.n,ch1,ch2);return0;}
运行结果:
inputacharacter:gtransformgtoG.