驾驶机动车遇有前方交叉路口交通阻塞时怎么办?
- A.依次停在路口外等候
- B.可借对向车道通过
- C.从前车两侧穿插通过
- D.进入路口内等候
热度🔥183
解析:打开微信小程序查看本题解析
为窗体或报表上的控件设置属性值的宏操作是
ADO 对象模型中有 5 个主要对象,他们是Connection、Command、RecordSet、Error 和
有以下程序:
#include
#include
typedef struct { char name[9]; char sex; int score[2]; } STU;
STU f (STU a)
{ STU b={"Zhao", 'm', 85, 90};
int i;
strcpy( a.name, b.name );
a.sex = b.sex;
for ( i=0; i<2; i++ ) a.score[i] = b.score[i];
return a;
}
main()
{ STU c= { "Qian", 'f', 95, 92 }, d;
d = f(c);
printf ("%s,%c,%d,%d, ", d.name, d.sex, d.score[0], d.score[1]);
printf ("%s,%c,%d,%d\n", c.name, c.sex, c.score[0], c.score[1]);
}
程序运行后的输出结果是( )。
若有以下程序
#include
int *f(int *s, int *t)
{ int k;
if (*s < *t) { k = *s; *s=*t; *t=k; }
return s;
}
main()
{ int i=3, j=5, *p=&i, *q=&j, *r;
r=f(p,q);
printf("%d,%d,%d,%d,%d\n", i, j, *p, *q, *r);
}
则程序的输出结果是