选字填空。
抵底 ( )面 到( ) ( )得上 ( )消
植殖 生( ) ( )物 ( )树 繁( )
底面 到底 抵得上 抵消
生殖 植物 植树 繁殖
—Can I call you back at two o'clock this afternoon?
—I'm sorry, but by then I______ to Beijing. How about five?[ ]
A. fly
B. will fly
C. will be flying
D. am flying
有以下程序段: #include <stdio.h> #include <string.h> main() char a[3][20]="china"), "isa", "bigcountry!"; char k[100]=0, *p=k; int i; for(i=0; i<3; i++) p=strcat(p, a[i]); i=strlen(p); printf("%d\n", i); 则程序段的输出结果是( )。
A) 18 B) 19 C) 20 D) 21