c语言实现读取txt文件内容到结构体数组中 #include #include #define N 10typedef struct { char work_ID[5]; char name[20]; char phone_nu[12];}student;int main(int argc, char *argv[]){ student st[N]; C语言 2024-01-11 137 点赞 2 评论 207 浏览