【简答题】#include void main() { int a[ ]={ 1 ,2 ,3 ,4 } ,i ; void sub( int *s ,int y); int x=0 ; for(i=0 ; i<4 ; i++) { sub(a ,x) ; printf("%d" ,x) ; } printf("\n") ; } void sub( int *s ,int y) { static int ...
【简答题】#include #include void main( ) {char a[]="abcdefghi"; int k; fun (a); puts(a); } fun(char *s) {int x, y; char c; for(x=0, y=strlen(s)-1; x
【单选题】高速公路和一级公路水稳基层施工时,应在冷拌场内或距离不超过()km的范围内设置工地试验室。
【单选题】设Derived类为Base类的子类,则如下( )对象的创建是错误的。
A.
Base base = new Derived();
B.
Base base = new Base();
C.
Derived derived = new Derived();
D.
Derived derived = new Base();