Question: C++. What is happening in this code? I'm having a bit of difficulty understanding some lines of code due to pointers. Please refer to the

C++. What is happening in this code?

I'm having a bit of difficulty understanding some lines of code due to pointers. Please refer to the comments and correct me on what is going on in the code. Thank you.

Practice code:

int ted = 25; //int andy; cout << ted << endl; //Prints 25 cout << endl;

int*andy = &ted; cout << ted << endl; //Prints 25 cout << endl;

cout << &ted << endl; //Prints address of ted cout << endl;

cout << andy << endl; //Prints same address cout << endl;

cout << *andy << endl; //Prints 25 cout << endl;

cout << &andy << endl; //Prints the address of int*andy cout << endl;

cout << ted << endl; cout << endl;

//cout << *ted << endl; //Question: Why won't this run? //cout << endl;

int* fred = andy; //Question: What is happening here? cout << andy << endl; cout << endl;

cout << fred << endl; //Question: What is happening here? cout << endl;

cout << *fred << endl; //Prints 25 cout << endl;

cout << &fred << endl; //Question: What is happening here? cout << endl;

cout << &andy << endl; //Question: What is happening here? cout << endl;

cout << *andy << endl; //Prints 25 cout << endl;

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 Databases Questions!