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 33 点赞 0 评论 50 浏览