From 9a2dd6a02929d4f4bad5e2b51a518d4a798c295f Mon Sep 17 00:00:00 2001 From: Usmanfarooq5 <39776552+Usmanfarooq5@users.noreply.github.com> Date: Tue, 31 Oct 2023 22:40:49 +0500 Subject: [PATCH] Create Pointers.cpp --- C++program/Pointers.cpp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 C++program/Pointers.cpp diff --git a/C++program/Pointers.cpp b/C++program/Pointers.cpp new file mode 100644 index 00000000..860fe4fb --- /dev/null +++ b/C++program/Pointers.cpp @@ -0,0 +1,23 @@ +#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; +}