3 Fe ¥) Write a reverse integer function that takes an integer num as a reference parameter and then reverse num's order after executing the function. Function prototype is: void revinteger( ints num ); If a user calls this function as: int x = 12345; int y - -5678; revinteger ( x ) ; revinteger( y ); cout « x << endl; cout << y << endl; Then the first cout will output 54321, and the second cout will output –876

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 19PE
icon
Related questions
Question
3 Fe ¥) Write a reverse integer function that takes an integer num as a reference parameter and then
reverse num's order after executing the function. Function prototype is:
void revinteger( ints num );
If a user calls this function as:
int x = 12345;
int y - -5678;
revinteger ( x ) ;
revinteger( y );
cout « x << endl;
cout << y << endl;
Then the first cout will output 54321, and the second cout will output –876
Transcribed Image Text:3 Fe ¥) Write a reverse integer function that takes an integer num as a reference parameter and then reverse num's order after executing the function. Function prototype is: void revinteger( ints num ); If a user calls this function as: int x = 12345; int y - -5678; revinteger ( x ) ; revinteger( y ); cout « x << endl; cout << y << endl; Then the first cout will output 54321, and the second cout will output –876
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Types of Function
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