Question: Execute the following program. Explain the meaning of *ptr in the cout statement. What is the difference between the *ptr in statement int *ptr =

Execute the following program. Explain the meaning of *ptr in the cout statement. What is the difference between the *ptr in statement int *ptr = &w;

and the statement cout<< "You entered the following integer : "<<*ptr<

#include  #include  using namespace std; main() 

{i n t w ; int *ptr = &w; cout<<" Enter any integer : "; cin>>*ptr; cout<

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!