填空题

在对文件操作的过程中,若要求文件的位置指针回到文件的开始处,应当调用的函数是 【9】 。

【参考答案】

rewind()或fseek()
<上一题 目录 下一题>
热门 试题

填空题
以下程序的运行结果是 【6】 。 #include<stdio.h> #define MAX(a,b) (a>ba:b)+1 main() int i=6,j=8,k; printf( %d n ,MAX(i,j));
填空题
以下程序的功能是从键盘输入若干学生的成绩,并输出最高成绩和最低成绩,当输入负数时结束。请填空。 #include <stdio.h> main() float x,amax,amin; scanf( %f ,&x); amax=x; amin=x; while( 【7】 ) if(x>amax)amax=x; else if( 【8】 ) amin=x; scanf( %f ,&x); printf( n amax=%f n amin=%f n ,amax,amin);
相关试题
  • 若给fun函数的形参s传送字符串“∪∪635...
  • 下列程序的功能是输入一个整数,判断其是否...
  • 下面程序的功能是将一个字符串str的内容倒...
  • 设在主函数中有以下定义和函数调用语句,且...
  • 以下程序可把输入的十进制数以十六进制数的...