标签:include

头文件中的static变量

在cal.h文件中是这样的: #ifndef CAL_H #define CAL_H #define NUMBER “0” static int test_include = 100; void push(double); double pop(void); int getop(char[]); int getch(void); vo……