建筑物沉降观测时,水准点的设置应以保证其稳定可靠为原则。
参考答案:对
下列程序的输出结果为 # include < iostream.h> void main( ) char * a[ ]="hello","the","world"; char * * pa=a; pa ++; cout << * pa <<endl;
A.hello
B.the
C.world
D.hellotheworld