皈依舞
您使用的是编译器没有看到声明的函数(“原型“)还没有。例如:int main(){
fun(2, "21"); /* The compiler has not seen the declaration. */
return 0;}int fun(int x, char *p){
/* ... */}您需要在main之前声明您的函数,比如直接声明函数,或者在头文件中声明函数:int fun(int x, char *p);