#include <stdio.h>

int main()
{
   int *ptr;
   int b=2;

   ptr = b;
   printf("%p\n", ptr);

   ptr = &b; 
   printf("%p\n", &b);

   return 0;
}
