题目内容
阅读程序填空:如果想要获取文件的大小,空白处应该填写以下哪个答案。#include#include#includeint main(int argc, char *argv[]){struct stat statBuf;if(stat(argv[1],&statBuf)<0){perror("stat");}else{printf("the size of file is %ld",);}return 0;}
查看答案
搜索结果不匹配?点我反馈
更多问题