У меня есть следующий код:
#include "stdafx.h"
#include <iostream>
using namespace std;
#include <conio.h>
#include <cstring>
#include <iomanip>
void swap(long a, long b)
{
long temp;
temp=a;
a=b;
b=temp;
}
int _tmain(int argc, _TCHAR* argv[])
{
int x = 5, y = 3;
cout << x ;
cout << y << endl;
swap(x, y);
cout << x ;
cout << y << endl;
getch();
return 0;
}
Программа выдает результат:
5 3
3 5
Программа фактически меняет значения! Почему это? Параметры swap()
не являются указателями или ссылками.
(Я использую VS 2005)