1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #include <iostream> using namespace std; int main() { ///What is a Pointer? ///A pointer is a variable whose value is the address of another variable. int var=100; cout<<&var<<endl; int *intP; intP=&var; cout<<intP<<endl; cout<<*intP<<endl; var=20; cout<<intP<<endl; cout<<*intP<<endl; return 0; } |
--------------------------------------------------------
Searches related to pointer in c++
pointer in c++ example
pointer in c++ pdf
pointer in c++ wikipedia
function pointer in c++
pointer in c++ tutorial
Pointers - C++ Tutorials
Pointer to int. C++
auto pointer in c++
this pointer in c++ ppt
pointer in c++ definition