Write a function swap to swap two int values. For instance, we have two variables int a, b and a=10,b=5. After the function swap is called, we should have a=5, b=10 . If we define a function like void swap(int a, int b) , there is no way for us to call this function to swap the values of two int variables. The following program will not help to swap the values. You can think about other ways to implement the function void swap(int a, int b) but you are unlikely to succeed. void swap(int a, int b) { int c = a; a = b; b = c; } int main() { int a, b; cin >> a; cin >> b; swap(a, b); Try to use pointers to solve this problem (e.g., defining a function like void swap(int *a, int *b) ).

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 22PE
icon
Related questions
Question
100%

In C++, and can it ask the user to enter the two values that will be swapped.

Write a function swap to swap two int values. For instance, we have two variables int a, b and a=10,b=5 . After the function swap is
called, we should have a=5, b=10 .
If we define a function like void swap(int a, int b) , there is no way for us to call this function to swap the values of two int variables.
The following program will not help to swap the values. You can think about other ways to implement the function void swap(int a, int
b) but you are unlikely to succeed.
void swap(int a, int b)
{
int c = a;
a = b;
b = c;
}
int main()
{
int a, b;
cin >> a;
cin >> b;
swap(a, b);
}
Try to use pointers to solve this problem (e.g.., defining a function like void swap(int *a, int *b) ).
Transcribed Image Text:Write a function swap to swap two int values. For instance, we have two variables int a, b and a=10,b=5 . After the function swap is called, we should have a=5, b=10 . If we define a function like void swap(int a, int b) , there is no way for us to call this function to swap the values of two int variables. The following program will not help to swap the values. You can think about other ways to implement the function void swap(int a, int b) but you are unlikely to succeed. void swap(int a, int b) { int c = a; a = b; b = c; } int main() { int a, b; cin >> a; cin >> b; swap(a, b); } Try to use pointers to solve this problem (e.g.., defining a function like void swap(int *a, int *b) ).
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
ADT and Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr