The lesson Edwards and Clark learned then is ______ the more down-to-earth guy won.
A. that
B. what
C. why
D. only
查看答案
I wanted to buy a color TV set this year, but my brother rejected the idea ______ a trip to the beach.
A. instead of
B. in view of
C. in favor of
D. in case of
This training course is open only to dieters undertaking to starve themselves ______ their own free will.
A. at
B. against
C. of
D. with
编写一个函数,从传入的M个字符中找出最长的一个字符串,并通过形参指针max传回该串地址(用****作为结束输入的标志)。 注意:部分源程序给出如下。 请勿改动main()函数和其他函数中的任何内容,仅在函数proc()的花括号中填入所编写的若干语句。 试题程序: #include<stdio.h> #include<string.h> #include<conio.h> char*proc(char(*a)[81],int num) { } void main() { char ss[10][81],*max; int n,i=0; printf("输入若干个字符串:"); gets(ss[i]); puts(ss[i]); while(!strcmp(ss[i],"****")==0) { i++; gets(ss[i]); puts(ss[i]); n=i; max=proc(ss,n); printf("\nmax=%s\n",max); }
I sent invitations to 80 people, ______ have replied.
A. of whom only 20
B. only 20 of those who
C. of whose only 20
D. only 20 who