code-dump icon indicating copy to clipboard operation
code-dump copied to clipboard

Create Pointers.cpp

Open Usmanfarooq5 opened this issue 2 years ago • 0 comments

#include

using namespace std;

int main () { int var = 20; // actual variable declaration. int *ip; // pointer variable

ip = &var; // store address of var in pointer variable

cout << "Value of var variable: "; cout << var << endl;

// print the address stored in ip pointer variable cout << "Address stored in ip variable: "; cout << ip << endl;

// access the value at the address available in pointer cout << "Value of *ip variable: "; cout << *ip << endl;

return 0; }

Usmanfarooq5 avatar Oct 31 '23 17:10 Usmanfarooq5