A local guide can take tourists to go sightseeing according to the travel schedule without consulting with the national guide about the local travel arrangements.
查看答案
A local guide should change the itinerary if tourists want to because he should put the customers first.
A. 对
B. 错
设有变量定义如下:int m=11;则下列正确的引用方法是( )。
A. float &b=m;
B. int &x=11;
C. int &z;
D. int &y=m;
设有变量定义如下: int m=0, *p1;则下列正确的定义或赋值语句是( )。
A. p1=m;
B. *p1=&m;
C. int *p2=&m;
D. int *p3=&p1;
设有变量定义如下: int m=6, n, *p1=&m, *p2=&n;则下列不正确的表达式语句是( )。
A. *p2=*p1;
B. p2=&p1;
C. n=*p1;
D. p2=p1;