📌  相关文章
📜  检查字符是否为大写 - C 编程语言代码示例

📅  最后修改于: 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;
}