标题: 请大家帮个忙 [打印本页] 作者: 罗ぷ曼ㄉ帝Ke 时间: 2009-11-5 01:01 标题: 请大家帮个忙 #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++中编译成功)作者: $星辰 时间: 2009-11-5 01:01
#include<iostream>
using namespace std;
int main()
{
int a=1, b=2;
swap(a,b);
cout<<"a="<<a<<endl;
return 0;
}
void swap(int *p1, int *p2)
{
int temp;
temp=*p1;
*p1=*p2;
*p2=temp;
}作者: ˇ风逍遥ˇ 时间: 2009-11-5 01:01
#include<iostream>
using namespace std;
int main()
{