#include struct student_info { char name[10]; int age; float weight; }; struct student_info students[4] = { {"È«±æµ¿", 504, 67.5}, {"À̼ø½Å", 703, 80.3}, {"°­°¨Âù", 645, 77.0}, {"À¯°ü¼ø", 205, 56.5} }; int main(void) { struct student_info tmp; tmp = students[2]; printf("%s %d %f\n", tmp.name, tmp.age, tmp.weight); }