更改readme.md格式
This commit is contained in:
parent
e8fdb609fe
commit
e5a1ffa00b
|
@ -1,4 +1,4 @@
|
||||||
**#### 题目要求: 创建 a.h、a.c,、b.h、b.c 四个文件,在 a 文件中创建求阶乘函数并实现,在 b 文件中创建数组的排序函数并实现,要求将 a,b 编译成动态库文件。并编写 test.c 文件,引入 a 和 b 两个文件的功能并编译运行。**
|
## 题目要求: 创建 a.h、a.c,、b.h、b.c 四个文件,在 a 文件中创建求阶乘函数并实现,在 b 文件中创建数组的排序函数并实现,要求将 a,b 编译成动态库文件。并编写 test.c 文件,引入 a 和 b 两个文件的功能并编译运行。
|
||||||
|
|
||||||
> 1. `libs` 中包含使用 `tempfiles` 文件夹中的源代码生成的动态库
|
> 1. `libs` 中包含使用 `tempfiles` 文件夹中的源代码生成的动态库
|
||||||
> 2. `includes` 中包含 `test*.c` 需要用到的头文件
|
> 2. `includes` 中包含 `test*.c` 需要用到的头文件
|
||||||
|
@ -27,6 +27,7 @@ gcc -shared object_file.o -o libshared_object.so
|
||||||
|
|
||||||
### 编译时指定头文件可以使用
|
### 编译时指定头文件可以使用
|
||||||
|
|
||||||
```bash
|
````bash
|
||||||
gcc testxxx.c ./libs/libxxx.so -I ./includes/ -o testxxx
|
gcc testxxx.c ./libs/libxxx.so -I ./includes/ -o testxxx
|
||||||
```
|
```xxxxxxxxxx gcc testxxx.c ./libs/libxxx.so -I ./includes/ -o testxxxbash
|
||||||
|
````
|
||||||
|
|
Loading…
Reference in New Issue