本文提供考研高级语言程序设计在线题库每日一练,以下为具体内容
1、判断两个字符串是否相等的正确语句是( )。
A、 if(s1=s2)
B、 if(s1==s2)
C、 if(strcpy(s1, s2))
D、 if(strcmp(s1, s2))
2、以下正确的函数声明形式是( )。
A、double fun(int x, int y)
B、double fun(int x, y)
C、double fun(int x, int y);
D、double fun(int , int )
3、以下选项中合法的字符常量是( )。
A、 "B"
B、 '\010'
C、 68
D、 F
4、若有说明语句"char s='\092';",则该语句( )。
A、使s的值包含1个字符
B、说明不合法,s的值不确定
C、使s的值包含4个字符
D、使s的值包含3个字符
5、已知函数原型为:struct tree *f(int x1,int *x2,struct tree x3,struct tree *x4)其中tree为已定义过的结构,且有下列变量定义: struct tree pt,*p; int m;则正确的函数调用语句( )。
A、&pt=f(10,&m,pt,p);
B、f(m+1,&m,p,p);
C、p=(m+1,&(m+2),*p,p);
D、p=f(m++,(int*)p,pt,&pt);
点击查看【完整】试卷>>