这个怎么错了

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

weixin_慕少5205495

2020-12-23 08:24

#include <stdio.h>

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

extern void printLine()     //这里定义的方法对吗?

{

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

}

int main()

{

    say();

    return 0;

}


写回答 关注

2回答

  • 慕用0028522
    2021-01-03 16:26:29

    在hello.c里面

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

    在test.c里面

    #include <stdio.h>
    extern void printLine();
    static void say()
    {    
    printLine();    
    printf("I love imooc\n");    
    printf("good good study!\n"); 
    printf("day day up!\n");    
    printLine();
    }


    慕用0028... 回复煽动

    调用函数需要;

    2021-01-16 16:41:53

    共 2 条回复 >

  • zzz6695543
    2020-12-28 20:10:03

    感觉是网站的问题


C语言入门

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

926040 学习 · 20793 问题

查看课程

相似问题