外观
78字小于1分钟
2024-10-02
// 导入系统自带 #include <stdio.h> // 导入自行编写 #include "test.h"
test.h
int sum(int a, int b);
此处的名字最好需要和库文件对应!
test.c
int sum(int a, int b) { return a + b; }