main函数如何调用其他文档的函数求教,main函数如何调用其他文档的函数,要求是两个文本,希望大神直接给我两个列子让我看看,就是可以互相调用的列子,谢谢,包括头文件等等完整的两个文本
t1.c:#include <stdio.h>#include "t.h"int main() { t2fun(); return 0;}t.h:void t2fun();按您说的,结果不跳出来,只有main的printf会输出t2.cvoid t2fun() { printf("in t2fun()\n");}
#include <stdio.h>#include "t.h"int main() { t2fun(); return 0;}
void t2fun();
void t2fun() { printf("in t2fun()\n");}