Computer Science, asked by pamjdv1478, 1 year ago

Write about declaring pointer variable with some examples

Answers

Answered by sharpshooterbkk
0
pointers are used for memory location
two types of pointers are * and &
* pointer is used to change the value of a variable permanently
& variable is a variable that stores the location of other variable

#include <iostream> 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; }

When the above code is

Similar questions