【お知らせ】この部分は英語原文のみでの提供となります。何卒ご了承ください。
2.1.2.68 toupper
Contents
Description
Convert lowercase letter to uppercase
Syntax
int toupper(int c)
Parameters
- c
- [input] letter to be converted
Return
The uppercase equivalent to c, if such value exists, or c (unchanged) otherwise.
Examples
EX1
void toupper_ex1() { printf("uppercase a is %c", toupper('a')); }
Remark
See Also
Header to Include
origin.h