Question: 7. Consider the following swap function definition. Void swap(int &x, int *y){ int temp = x; x = *y; *y = temp; } Now consider

7. Consider the following swap function definition.

Void swap(int &x, int *y){ int temp = x; x = *y; *y = temp; }

Now consider the following snippet of main():

int main(){ int a = 10; int b = 20; swap(a,&b); cout<

What value of a and b would be printed by the cout statement? Why? (4 + 4 + 6)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!