C ctype toupper() 函数
定义和用法
该 toupper()
函数返回字符大写版本的 ASCII 值。如果字符不是大写字符,则返回其值而不进行更改。
该 toupper()
函数在 <ctype.h>
头文件中定义。
语法
int toupper(int c);
参数值
参数 | 描述 |
---|---|
c | 必需。字符的 ASCII 值或实际字符 |
技术细节
返回值 | 一个 int 值,表示字符大写版本的 ASCII 值。 |
---|
该 toupper()
函数返回字符大写版本的 ASCII 值。如果字符不是大写字符,则返回其值而不进行更改。
该 toupper()
函数在 <ctype.h>
头文件中定义。
int toupper(int c);
参数 | 描述 |
---|---|
c | 必需。字符的 ASCII 值或实际字符 |
返回值 | 一个 int 值,表示字符大写版本的 ASCII 值。 |
---|
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]