C語(yǔ)言外部函數(shù)調(diào)用問(wèn)題
#include <stdio.h>
#include "test.c" ??
void printLine() ? ??
{
? ?printf("**************\n"); ??
}
int main()
{
? ? say();
? ? return 0;
}
-------------------------------
#include <stdio.h>
#include "hello.c"?
void say(){
? ? printLine();
}
輸出什么?或者編譯錯(cuò)誤?