Purser presents all the seaman’s books to the ________
A.Pilot
B.Customs Officer
C.Immigration Officer
D.Agent
第1题:
Every entry required to be made in the Official Logbook shall be signed by the ______.
A.Mate on watch
B.Master and Chief Mate or other member of the crew
C.Master only
D.Purser,one of the Mates,and some other member of the crew
第2题:
06410101:若有语句:char s1[10], s2[10]={"books"},则能将字符串books赋给数组s1的正确语句是()。
A.s1={"books"};
B.strcpy(s1,s2);
C.s1=s2;
D.strcpy(s2,s1);
第3题:
purser指主任乘务长。
第4题:
第5题:
若有声明语句char s1[10]={0},s2[10]="books";则能将字符串“books”赋给数组s1保存的语句是()。
A.strcat(s1,s2);
B.s1="books";
C.s1=s2;
D.strcpy(s2,s1);
第6题:
29、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { strcat(books[i],"book"); } printf("%s",&books[i-1][3]); return 0; }
A.Physicalbook
B.sical
C.Physical
D.sicalbook