________was the first English writer who was awarded Nobel Prize for literature.
A. Rudyard Kipling
B. William Butler Yeats
C. George Bernard Shaw
D. John Galsworthy
查看答案
Nathaniel Hawthorne was famous for________.
A. The Scarlet Letter
B. The Legend of Sleepy Hollow
C. The Last of the Mohicans
D. Richard’s Almanac
设char s[ ]=“1234567”;,执行printf(“%d,%d\n”,strlen(s),sizeof(s));后的输出结果是( )
A. 7,7
B. 7,8
C. 8,7
D. 8,8
Course in General Linguistics is written by________.
A. N.Chomsky
B. J.Austin
C. F.de Saussure
D. J.Searle
将文本文件fin.dat中的数字字符找出并写入文本文件fnum.dat中。#includevoid main (){char ch;FILE*fin,*fnum;fin=fopen (“fin.dat”,_________);/*第一空*/fnum=fopen (“fnum.dat”,“w’’);while(!feof(_________))/*第二空*/{ ch=fgetc(fin);if(_________)fputc (ch,fnum);/*第三空*/}fclose (fin);fclose(fnum);}