⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 employee.h

📁 Thinking in C, 全世界非常有名的学习C语言的书籍。本源代码含有该书每一章节的习题的解答方案的源代码。
💻 H
字号:
/* employee.h */

/* addEmployee reads each field from standard
 * input into the next available Employee slot,
 * as in the exercise in the previous section.
 * It returns the index of the Employee
 * just added, or -1 if the array is full */
int addEmployee(void);

/* printEmployee also returns the index of the
 * Employee just printed, or -1 if the index i
 * is invalid */
int printEmployee(int i);

/* Does what it says: */
int numEmployees(void);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -