wartość
r
//-- przesyłanie argumentów przez void Zamiana(int x, int y)
{
int z;
cout « "\nPrzed zamianą:\n"/ cout « "x = " « x « endl; cout « "y = " « y « endl; z = x; x = y; y = z;
cout « "\nPo zamianie:\n" ; cout « "x = " « x « endl; cout « "y = " « y « endl;
V