C_learn/3_lesson/03_fun_many_file/myfun.c

11 lines
236 B
C

#include "myfun.h" // 此时包含的头文件要使用双引号,在当前目录下找对应头文件
void myfun1()
{
printf("hello world\n");
printf("nihao beijing\n");
printf("welcome to 1000phone\n");
return ;
}