Question: C++ pointers. Help please!!! I was wanting to know if I'm getting the right idea of the code. Please correct me if I am wrong.
C++ pointers. Help please!!!
I was wanting to know if I'm getting the right idea of the code. Please correct me if I am wrong. Refer to the comments please. 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;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
