/* Array of Structures in C Initialization */ struct Employee { int age; char name[50]; int salary; } Employees[4] = { {25, "Suresh", 25000}, { ...
確定! 回上一頁