Demonstrates the & and * pointer operators. - C++ Operator

C++ examples for Operator:Address Operator

Description

Demonstrates the & and * pointer operators.

Demo Code

#include <iostream> 
using namespace std; 

int main() /*from w  w w  . ja  va 2s .  c  o  m*/
{ 
    int a; // a is an integer 
    int *aPtr; // aPtr is an int * which is a pointer to an integer 

    a = 7; // assigned 7 to a 
    aPtr = &a; // assign the address of a to aPtr 

    cout << "The address of a is " << &a << "\nThe value of aPtr is " << aPtr; 
    cout << "\n\nThe value of a is " << a << "\nThe value of *aPtr is " << *aPtr; 
    cout << "\n\nShowing that * and & are inverses of " << "each other.\n&*aPtr = " << &*aPtr << "\n*&aPtr = " << *&aPtr << endl; 
}

Result


Related Tutorials