标签:
char to_upper(char input) {
if
(
‘a‘
<= input && input <=
‘z‘
) {
return
input -
+
‘A‘
;
}
input;
使用C语言把字母转换成大写,不能使用库函数
原文地址:http://www.cnblogs.com/weiboyuan/p/4654408.html