【名词&注释】
表达式、命令行(command line)、大写字母(majuscule)
[单选题]已有定义,char c; ,程序前面已在命令行中包含ctype.h文件,不能用于判断c中的字符是否为大写字母的表达式是( )。
A. isupper(
B. ’A’<=c<=’Z’
C. ’A’<=c&&c<=’Z’
D. c<=(‘z’-32)&&(‘a’-32)<=c
查看答案&解析查看所有试题
学习资料:
[单选题]不需要事先建立就可以使用的变量是 ( )
A. 公共变量
B. 私有变量
C. 局部变量
D. 数组变量
[单选题]下列语句段中,正确的是( )。
A. struct {int x; float y; int a[2]; unsigned b[3]; char name[10]; };
B. structstu { unsigneda[3]; unsigned b[4]; }x; int*p=&x.a;
C. struc tsu { int a; float x[4]; }y={1,1.0}; floatdat a=y.x;
D. stmct nd {int a,b; unsigned c[2]=5; };
[单选题]下列程序的运行结果是
A. include "stdio.h"
B. main( )
C. { int x=-9,y=5,z=8;
D. if(xy)
E. if(y0) z=0;
F. else z+=1;
G. printf("%d\n",z);}
H. 6
I. 7
J. 8
K. 9
[单选题]下列语句中,输出与众不同的是
A. cout"1."setfill('')"Hello!"endl;
B. cout"1."''"Hello! \n";
C. cout"1. Hello!"endl;
D. cofit"1."setw(7)"Hello!";
[单选题]有如下函数模板定义:templateT1 sam(T1 a1){return(al+a2+a3);}则以
有如下函数模板定义: templatetypename T1,int a2,int a3> T1 sam(T1 a1) { return(al+a2+a3); } 则以下调用中正确的是
A. sumint,4,3>(5);
B. sum4,3>(5);
C. sumint,int,int>(5);
D. sam(5);
本文链接:https://www.51ksbd.net/show/e5j83n.html