hello.c報錯解決
#include
#include "test.c" ? //引用test.c文件 extern int printLine() ? ? //這里定義的方法對嗎?( void 不能使用return 0) { ? printf("**************\n"); ? }#include
#include "test.c" ? //引用test.c文件 extern int printLine() ? ? //這里定義的方法對嗎?( void 不能使用return 0) { ? printf("**************\n"); ? }2018-04-23
舉報
2018-05-13
test 里面
#include <stdio.h>
void printLine();
static void say()
{
2018-04-23
2018-04-23
#include <stdio.h>
#include "test.c"? ?//引用test.c文件
extern int printLine()? ? ?//這里定義的方法對嗎?
{
? ?printf("**************\n");? ?
}
int main()
{
? ? say();
? ? return 0;
}