5.13的任务怎么搞

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

慕运维0314343

2017-08-09 20:51

小编把代码编辑器中的某个方法定义错了,你能帮他改正吗?
在代码编辑器中:
第3行将函数改为外部函数
运行结果为

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

写回答 关注

2回答

  • 慕仙3452203
    2019-03-28 21:26:32

    test.c怎么写啊

  • treehuang
    2017-08-09 21:02:17

    C语言规定,在没有指定函数的作用范围时,系统会默认认为是外部函数,因此当需要定义外部函数时extern也可以省略,任务是要你把第三行的函数改为外部函数,即定义为外部函数

    #include <stdio.h>

    #include "test.c"   //引用test.c文件

    extern  void printLine()     //用extern

    {

       printf("**************\n");   

    }

    int main()

    {

        say();

        return 0;

    }


    慕运维031...

    还是得把#include "text.c"注释掉才能运行啊

    2017-08-09 21:09:41

    共 1 条回复 >

C语言入门

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

926026 学习 · 20793 问题

查看课程

相似问题