NoticeThe conference room 1 ,but we need your help to 2listed below.Please keep the conference room clean and take away all your 3after themeeting. Turn off the lights,the computers,and so on.In addition, 4. Make sure that all the rules mentioned above are strictly followed when you leave. 5.XXXOfficeJune 20th, 2019
查看答案
设fp是某文件指针,在C语言中,当fp指向文件末尾时,函数feof(fp)的返回值是( )。
A. 0
B. null
C. -1
D. 非零值
在C语言中,FILE类型由系统定义,保存在( )头文件中。
A. stdio.h
B. math.h
C. string.h
D. fstdio.h
在C语言中,函数rewind的作用是( )。
A. 使指针重新指向文件开头
B. 使指针向前移动一位
C. 使指针指向文件末尾
D. 使指针指向文件的任意指定位置
在C语言中,函数fgets(str,n,fp)的功能是( )。
A. 从文件fp中读取长度为n的字符串,存入str指向的内存空间
B. 从文件fp中读取长度不超过n-1的字符串,存入str指向的内存空间
C. 从文件fp中读取n个字符串,存入str指向的内存空间
D. 将长度为n的字符串str中的内容写入文件fp中