请输入您要查询的百科知识:

 

词条 isupper
释义

原型:extern int isupper(int c);

头文件:ctype.h

功能:判断字符c是否为大写英文字母

说明:当参数c为大写英文字母(A-Z)时,返回非零值,否则返回零。

附加说明: 此为宏定义,非真正函数。

举例1:(在Visual C++6.0中运行通过)

#include <ctype.h>

#include <stdio.h>

int main()

{

char Test[]="a1B2c3D4";

char *pos;

pos=Test;

while(*pos!=0)

{

if(isupper(*pos))

printf("%c",*pos);

pos++;

}

printf("\");

return 0;

}

输出:BD

举例2:(在TC2.0中运行通过)

// isupper.c

#include <syslib.h>

#include <ctype.h>

main()

{

int c;

clrscr(); // clear screen

c='a';

printf("%c:%s\",c,isupper(c)?"yes":"no");

c='A';

printf("%c:%s\",c,isupper(c)?"yes":"no");

c='7';

printf("%c:%s\",c,isupper(c)?"yes":"no");

getchar();

return 0;

}

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/15 7:51:20