//读取英文文本,统计单词次数并打印,要求用结构体数组
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<ctype.h>
#define _CRT_SECURE_NO_WARNINGS
struct Word {
char word[100];
int count;
};
int main() {
FILE* fp = fopen("C:\\Code\\C\\DEV\\t.txt", "r");
if (