hello.c报错解决

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

永夜帝王

2018-04-23 21:57

#include

#include "test.c"   //引用test.c文件 extern int printLine()     //这里定义的方法对吗?( void 不能使用return 0) {   printf("**************\n");   }
写回答 关注

3回答

  • 慕粉4209211
    2018-05-13 21:49:16

    https://img2.mukewang.com/5af842310001eec802340096.jpg

    test 里面

    #include <stdio.h>

    void printLine();

    static void say()

    {


  • 永夜帝王
    2018-04-23 22:00:40

    https://img1.mukewang.com/5adde6f30001256b13660768.jpg完美解决大概

  • 永夜帝王
    2018-04-23 21:57:26

    #include <stdio.h>

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

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

    {

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

    }

    int main()

    {

        say();

        return 0;

    }


    苯的大兀键

    为什么要换成int?

    2018-05-03 15:29:09

    共 1 条回复 >

C语言入门

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

926210 学习 · 20797 问题

查看课程

相似问题

hello.c

回答 1

hello.c

回答 2

hello.c

回答 2