9. 已知將5個員工信息(姓名、年齡、薪水)存放在結構體數組中,編寫程序,將新調來的員工信息插入在第3個位置上。

編輯軟件:Dev C++web #include<stdio.h> #include<string.h> struct work { char name[20]; int age; int wage; }; int main() { int i; struct work s[6]={{"Liu",24,1560},{"Xu",25,1046},{"Zhang",22,1590},{"C
相關文章
相關標籤/搜索