以下程序的功能是()?
发布于 2022-03-03 14:26:44
以下程序的功能是()
#include <stdio.h> int main(void) { FILE *fp long int n fp = fopen("wj.txt", "rb") fseek(fp, 0, SEEK_END) n = ftell(fp) fclose(fp) printf("%ld", n) }
登录后免费查看答案
关注者
0
被浏览
7