📅  最后修改于: 2022-03-11 15:04:39.735000             🧑  作者: Mango
代码示例1
int isUpper(char c) {
// check if the argument is the uppercase bound
if (c >= 'A' && c <= 'Z') return 1;
else return 0;
}