3
Answers

What is the difference between these two?? The first gives you the add

Suri

Suri

3y
505
1

What is the difference between these two?? The first gives you the address of the pointer, yes? What is the second?

int *mypointer;
cout << &mypointer << endl;

cout << mypointer << endl;

 

Answers (3)