15-multiple-files.c 285 B

1234567891011121314151617181920
  1. // 15.多文件编程
  2. // file1.c
  3. #include <stdio.h>
  4. void sayHello() {
  5. printf("Hello from file1.c!\n");
  6. }
  7. // file2.c
  8. #include <stdio.h>
  9. void sayHello(); // 函数声明
  10. int main() {
  11. sayHello();
  12. return 0;
  13. }
  14. // 编译和链接两个文件:
  15. // gcc file1.c file2.c -o program