⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reloadengineerinformation.c

📁 软件测试工程师管理系统
💻 C
字号:
#include <stdio.h>
#include "stdlib.h"
#include "conio.h"
#include "main.h"
void ReloadEngineerInformation(void)
{
	FILE *fp;
	int i=0;
	
	if((fp=fopen("Engineer.txt","r+"))==NULL)
	{
		printf("不能打开Engineer.txt文件,请按任意键结束!\n");
		getch();
		exit(1);
	}
	
	for(i=0;fread(&Engineer[i],sizeof(struct engineerstruct),1,fp);i++,count++);

	fclose(fp);	
	printf("导入数据成功!\n");
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -