It’s c++
Write a main() function that does the following:
1) Asks the user to enter a number and stores that number in aninteger variable.
2) Using a pointer dereference, writes that number back to thescreen.
Example:
Which number to store? 25That number is: 25
Expert Answer
Answer to It’s c++ Write a main() function that does the following: 1) Asks the user to enter a number and stores that number in a…