toupper
来自cppreference.com
| Defined in header <ctype.h>
|
||
| int toupper( int ch ); |
||
将指定的字符转换为大写。
[编辑] 参数
| ch | - | 要转换的字符 |
[编辑] 返回值
与ch对应的大写字符。如果当前的C语言区域设置中没有对应大写,则返回原ch字符。
[编辑] 另请参阅
| 字符转换为小写 Original: converts a character to lowercase The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (函数) | |
| 一个宽字符转换为大写 Original: converts a wide character to uppercase The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (函数) | |
| C++ documentation for toupper
| |