单项选择题
有以下程序,输出的结果为()#includestruct stu{int num;char name[10];int age;};void fun(stu *p){cout< < (*p).name< main(){stu students[3]={{9801,”Zhang”,20}, ;{9802,”Long”,21},{9803,”Xue”,19}};fun(students+2);}
A.ZhangB.XueC.LongD.18
在SQL Server2008中无法在SSMS中进行“分离数据库"操作的有()数据库。A.masterB.mo...
多项选择题在SQL Server2008中无法在SSMS中进行“分离数据库"操作的有()数据库。
A.masterB.modelC.pubsD.msdb
定义以下结构体数组struct c{int x;int y;}s[2]={1,3,2,7};,则语句cout”...
单项选择题定义以下结构体数组struct c{int x;int y;}s[2]={1,3,2,7};,则语句cout”<<”s[0]x*s[1].x;的输出结果为()
A.14B.6C.2D.21
若有定义"int a[10]={1,2,3,4,5,6,7,8,9,10},*p;",则下列语句正确的是()A...
单项选择题若有定义"int a[10]={1,2,3,4,5,6,7,8,9,10},*p;",则下列语句正确的是()
A.for(p=a;p<(a+10);p++)B.for(p=a;p>(a+10);p++)C.for(p=a,p=(a+10);p++)