day8 homework: 动态库的生成和使用题目练习
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
#ifndef __A_H__
|
||||
#define __A_H__
|
||||
|
||||
int factorial(int); // 声明阶乘函数
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,6 @@
|
||||
#ifndef __B_H__
|
||||
#define __B_H__
|
||||
|
||||
int *arrSort(int arrInput[], int arrlen); // 声明数组排序函数
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user