请大家帮个忙
#include<iostream>using namespace std;
int main()
{
int swap(int *p1, int *p2);
int a=1, b=2;
swap(&a, &b);
cout<<"a="<<a<<endl;
return 0;
}
int swap(int *p1, int *p2)
{
int temp;
temp=*p1;
*p1=*p2;
*p2=temp;
}
这个为什么在vc++6.0中编译不了?
谢谢(在dev c++中编译成功)