11 lines
236 B
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 ;
|
||
|
}
|