0
点赞
收藏
分享

微信扫一扫

多文件编译

素锦时年_1b00 2022-04-03 阅读 32
c++

代码

1.t1.c 
#include<stdio.h> 
void fun1(){ 
    printf("this is t1\n"); 

2.demo.c 
#include<stdio.h> 
extern int fun1();
void main(){ 
fun1(); 


#endif
 

举报

相关推荐

0 条评论