问答详情
源自:5-13 内部函数与外部函数

为什么不能在“test.c"中调用”hello.c"

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

提问者:qq_慕UI8396567 2019-03-14 20:39

个回答

  • 王志刚_
    2019-03-15 18:46:21

    重复调用了,第二行和第三行