我要利用被调函数,对10个数进行由小到大的排列
使用 extern 进行预声明
extern int a();int main(){}int a(){}
前面加个函数声明,把你的函数头放在前面;
void a() { } 声明,放在前面: void a();