A.Progr B.Progra C.Program D.Programming
A.打开文件,定义文件指针,修改文件,关闭文件 B.打开文件,定义文件指针,读写文件,关闭文件 C.定义文件指针,定位指针,读写文件,关闭文件 D.定义文件指针,打开文件,读写文件,关闭文件
A.24 B.26 C.42 D.62
A.程序运行后,当前工作目录下存在quiz.txt文件,其中的内容是"ok!" B.程序运行后,当前工作目录下存在quiz.txt文件,其中的内容是"success!" C.程序运行之前,当前工作目录下一定不存在quiz.txt文件 D.程序运行之前,当前工作目录下一定存在quiz.txt文件
A.first B.secondC.firstsecondD.secondfirst C.firstsecond D.secondfirst
A.以读/写方式打开一个文本文件 B.以输出方式打开一个文本文件 C.以读/写方式建立一个新的文本文件 D.以读/写方式建立一个新的二进制文件
A.(p++)->num B.(*++p).num C.(*p++).num D.*(++p)->num
A.printf("%c\n",s[1].name[0]); B.printf("%c\n",s[2].name[0]); C.printf("%c\n",s[1].name); D.printf("%c\n",s[2].name);
A.scanf("%s",p[0].name); B.scanf("%d",q->age); C.scanf("%d",&(q->sex)); D.scanf("%d",&p[0].age);
A.15 B.12 C.4 D.17