摘要: 1 #include <stdio.h> 2 3 /*structure declaration*/ 4 struct employee{ 5 char *name; 6 int employee_id; 7 double salary; 8 }; 9 10 struct employee make 阅读全文
posted @ 2021-06-07 16:32 墨鳌 阅读(85) 评论(0) 推荐(0)