请问把内部函数变为外部函数为什么还不能执行啊
#include <stdio.h>
#include "test.c"
extern void printLine()
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
#include <stdio.h>
#include "test.c"
extern void printLine()
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
2019-10-31
举报