C语言下最简单的动态链接库demo实现一个demo,在main.c中调用动态链接库中的add函数。
准备源码首先实现add函数,在add.c中实现以下内容。
int add(int a, int b)
{
return a+b;
}
2023-06-21