没有出错,只是无法调用那个test.c文件,你把那个文件里的代码copy过来就行了。

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

慕侠9399834

2018-12-19 12:46

#include

static void say() {    printLine();    printf("I love imooc\n");    printf("good good study!\n");    printf("day day up!\n");    printLine(); } extern void printLine()     //这里定义的方法对吗? {   printf("**************\n");   } int main() {    say();    return 0; }
写回答 关注

1回答

  • 慕侠9399834
    2018-12-19 12:46:56

    #include <stdio.h>

    static void say()

    {

        printLine();

        printf("I love imooc\n");

        printf("good good study!\n");

        printf("day day up!\n");

        printLine();

    }

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

    {

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

    }



    int main()

    {

        say();

        return 0;

    }


C语言入门

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

926020 学习 · 20793 问题

查看课程

相似问题