Sorry, there is no direct airline ___Taiwanand the mainland.
A. along
B. in
C. between
查看答案
The teacher asks the class to ___ their hands if they have any questions.
A. put away
B. put up
C. put down
若有说明语句:int a,b,c,*d=&c;,能正确从键盘读入三个整数分别赋给变量a、b、c的语句是( )。
A. scanf ("%d%d%d",&a,&b,d);
B. scanf ("%d%d%d",a,b,d);
C. scanf ("%d%d%d",&a,&b,&d);
D. scanf ("%d%d%d",a,b,*d);
若有以下定义,则赋值正确的是( )。int a ,b , *p;float c, *q;
A. p=&c
B. q=p
C. p=NULL
D. q=new int
以下程序中调用scanf函数给变量a输入数值的方法是错误的,其错误原因是( )。include main(){int *p,*q, a,b;p=&a;printf("input a:");scanf ("%d",*p);... ...}
A. *p表示的是指针变量p的地址
B. *p表示的是变量a的值,而不是变量a的地址
C. *p表示的是指针变量p的值
D. *p只能用来说明p是一个指针变量