Intro To C++/Pointing to Data
What is a pointer?Edit
A Pointer is a variable that contains a memory address of other variable. Pointer variable can be declared like the other variable. But, the data type is suffixed by a "*" character.
#include <iostream>;
using namespace std;
int main{
return 0;
}
Playing with pointerEdit
Reference,an object in a programEdit
Pointer & ReferenceEdit
#include <iostream>;
using namespace std;
int main{
return 0;
}