Question: #include using namespace std; int main() { /* Declare two integer variables Value1 and Value2 initialize Value1 to 25. Declare the variable Ptr1 to be
#include using namespace std; int main() { /* Declare two integer variables Value1 and Value2 initialize Value1 to 25. Declare the variable Ptr1 to be a pointer to an object type int. Assign the address of variable Value1 to pointer variable Ptr1. Print the value of the object pointed to by Ptr1. Assign the value of the object pointed to by Ptr1 to Value2. Print the value of Value2 Print the address of Value1 Print the address stored in Ptr1 */ cout << " Lab 13" << endl; return 0; } Step by Step Solution
3.46 Rating (149 Votes )
There are 3 Steps involved in it
Solution Certainly Heres your code with comments in English explaining each step include using na... View full answer
Get step-by-step solutions from verified subject matter experts
