ICLO-67 Given the following function definition: void fun(int x, int &y){ int z; Z= x + 2; x = x3; y = Z+x; } What is th
Posted: Sun May 15, 2022 1:40 pm
ICLO-67 Given the following function definition: void fun(int x, int &y){ int z; Z= x + 2; x = x3; y = Z+x; } What is the exact output of the following code fragment that invokes fun? int a=1; int b=2; int c=3; fun(a,b); cout<<b<<" "<<c<<" "<<a; Note: do not use extra space in the output, represents one space.