数据结构答辩(大二) #include "stdio.h" struct students{ int id; char name[50]; char major[50]; int classes; }; struct students student[5] = { { 1001, "小白", "计算机科学与技术", 1906014210 }, { 1005, "乔碧萝", "智能科学与技术", 1906034210 }, { 1004, "小明", "物联网工程&quo……

阅读全文