不能引起非淋菌性 * * 炎的病原体是
A.解脲脲原体B.人型支原体C.生殖道支原体D.肺炎衣原体E.沙眼衣原体
参考答案:D
有以下定义和语句: int a[3][2]={1,2,3,4,5,6,},*p[3]; p[0]=a[1]; 则*p[0]+1)所代表的数组元素是( )。
A.a[0][1]
B.a[1][0]
C.a[1][1]
D.a[1][2]
下列程序的输出结果为 # 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