ml1508511 发表于 2021-10-16 18:20:59

请问多个.c如何调用函数

如题所示,请问如何解决。

hrpzcf 发表于 2021-10-16 18:48:47

文件名:t.h
// 声名函数原型
void hello(void);


文件名:t1.c
#include <stdio.h>

// 函数定义在此
void hello(void)
{
    printf("hello world!");
}



文件名:t2.c
// 包含声明了hello函数原型的头文件t.h
#include "t.h"

int main(void)
{
    hello(); // 调用t1.c中定义的函数

    return 0;
}


编译命令:gcc t1.c t2.c -o t.exe




其实可以不用头文件t.h,可以直接在t2.c中声明函数原型:
#include <stdio.h>

void hello(void);

int main(void)
{
    hello();

    return 0;
}

编译命令一样。

2736946915 发表于 2021-10-16 22:01:21

封装到类
创建指针
调用

此方星河 发表于 2021-10-16 22:52:17

https://blog.csdn.net/m0_51426055/article/details/118398450

ml1508511 发表于 2021-10-17 07:51:07

测试了一下,成功了,非常感谢,以后我会好好学习的。
页: [1]
查看完整版本: 请问多个.c如何调用函数