#include//蜘蛛纸牌存档文件,读取分数。int main(void){ FILE *rfile; int p[20]; rfile = fopen("d:\\spider.sav","rb+");//只能用rb+,不能用wb fseek(rfile,368,SEEK_SET);//368是170的十六进制,这个位置是要修改的内容所在的位置。 fread(p,2,2,rfile);//重要 printf("%d\n",p[0]); fclose(rfile); return 0;}
本文共 318 字,大约阅读时间需要 1 分钟。
#include//蜘蛛纸牌存档文件,读取分数。int main(void){ FILE *rfile; int p[20]; rfile = fopen("d:\\spider.sav","rb+");//只能用rb+,不能用wb fseek(rfile,368,SEEK_SET);//368是170的十六进制,这个位置是要修改的内容所在的位置。 fread(p,2,2,rfile);//重要 printf("%d\n",p[0]); fclose(rfile); return 0;}
转载于:https://www.cnblogs.com/jhcla/p/4231832.html