在下列节日中,北京日出最早、正午时刻树木影子最短的是[ ]
A.元旦
B.春节
C.中秋节
D.国际儿童节
答案:D
挡土墙的抗滑安全系数Ks应大于()。
A.1.3
B.1
C.2
D.1.5
请补充main函数,改函数的功能是,把一个二维字符数组每行字符串最大的字符拷贝到字符数组s中。 例如,如果str[3]="efjh","cfimls","owys",则s;"hsy"。 注意:部分源程序给出如下. 请勿改动主函数main和其他函数中的任何内容,仅在 main函数的横线上填入所编写的若干表达式或语句。 试题程序: #inc lude<stdio, h> main() int i=0; char *str [3] = "efjh", "efknls", "owys" ;char **p;char s [8];clrscr 0;【1】;for (i=O; i<3; i++) s [i] =*p [i]; while (*p [i] ) if (S [i] <*p [i] ) s [i] =*p[i]; 【2】; 【3】; printf(" new string \n"); puts (s);