adding value to a pointer

 #include <stdio.h>

int main()
{
    int a=45;
    int *p;
    p=&a;
    printf("%d",*p+12);
    return 0;

}


Comments