为啥两个#include <stdio.h> #include "test.c" 怎么用????

来源:5-13 内部函数与外部函数

慕后端0492707

2017-04-23 11:45

#include <stdio.h>
#include "test.c"   //引用test.c文件
extern void printLine()     //这里定义的方法对吗?
{
   printf("**************\n");   
}
int main()
{
    say();
    return 0;
}

写回答 关注

1回答

  • 柒丶染丶
    2017-04-23 16:41:27

    尖括号和引号的引用方式不同,具体你可以去CSDN看一下他们的区别

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926022 学习 · 20793 问题

查看课程

相似问题