CJCoding With Joseph

Swap Two Numbers by Reference

Write a function void swapValues(int &a, int &b) that swaps the two integers using reference parameters. In main, a = 5 and b = 9; call swapValues(a, b) and then print them so the output is exactly:

a=9 b=5

Reference parameters (int &a) let the function change the caller's variables.

Expected Output:

a=9 b=5
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.