C LANGUAGE - 27: DEREFERENCING POINTS

 HERE, WE WILL SEE ABOUT DEREFRENCING POINTS:

#include<stdio.h>
#include<stdlib.h>

int main() {
    int age = 30;
    int * pAge = &age;

    //pritf("%p", pAge);//
    printf("%d", &age);
    return 0;
}

Comments