函数调用语句fseek(fp,10,1)的含义是()。
A. 将文件指针移到距离文件头10个字节处
B. 将文件指针移到距离文件尾10个字节处
C. 将文件指针从当前位置后移10个字节处
D. 将文件指针从当前位置前移10个字节处
以下程序的运行结果是_______。struct student{ char name[10]; long sno; float score;};int main(void){ struct student a={"Zhangsan",2001,95},b={"Lisi",2002,90}; struct student c={"Ahua",2003,95},d,*p=&d; d=a; if(strcmp(a.name,b.name)>0) d=b; if(strcmp(c.name,d.name)>0) d=c; printf("%ld%s\n",d.sno,p->name); return 0; }