C_learn/3_lesson/03_fun_many_file/main.c

10 lines
105 B
C
Raw Normal View History

2023-06-02 04:09:58 +08:00
#include <stdio.h>
#include "myfun.h"
int main(int argc, char *argv[])
{
myfun1();
return 0;
}