Question: Simple C++ program using Pointers... #include // Lab 13 Pointers using namespace std ; int main () { /* Declare two integer variables Value1 and

Simple C++ program using Pointers...

#include  // Lab 13 Pointers 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

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!