【单选题】
下列程序段运行后,表达式()的值为3。structpoint{intx;inty;}*p;structpointa[3]={1,2,3,4,5,6};p=a;
【单选题】
若有定义:inta[10]={0,1,2,3,4,5,6,7,8,9},*p=a;,则()表达式是错误的。
【简答题】
#include stdio.hint main(){char a[]=I love China!,b[20],*p1,*p2;p1=a;p2=b; for(;*p1!=\0p1++,p2++)*p2=*p1; *p2=\0// printf(string a is:%s\n printf(string b is:%s\n return 0;}以上程序运行结果为string b is:[填空1]。
【单选题】
设有如下函数定义
int f(char *s) {
char *p=s;
while(*p!=’\0’) p++;
return(p-s);
}
在主函数中用coutf(“good”)调用上述函数, 则输出结果为( )
【单选题】
设有如下函数定义
int f(char *s) {
char *p=s;
while(*p!=’\0’) p++;
return(p-s);
}
在主函数中用coutf(“good”)调用上述函数, 则输出结果为( )。
【单选题】
设有如下函数定义
int f(char *s) {
char *p=s;
while(*p!=’\0’) p++;
return(p-s);
}
在主函数中用cout<<f(“good”)调用上述函数, 则输出结果为( )。
【单选题】
设有如下函数定义
int f(char *s) {
char *p=s;
while(*p!=’\0’) p++;
return(p-s);
}
在主函数中用cout<<f(“good”)调用上述函数, 则输出结果为( )
【简答题】
int a[10]={0,1,2,3,4,5,6,7,8,9};int *p;int i;p=a;printf(%d\n,*p++);printf(%d\n,*++p);程序输出结果为[填空1]和[填空2]。
【单选题】
设X~B(2,p),Y~B(3,p)若P(X1)=5/9,则P(X1)=
【多选题】
若“所有S是P”与“所有P是S”均假,则S与P在外延具有()关系或()关系。