Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. int main(void){
  5.     int a=1;
  6.     int * i=&a;
  7.     int ** j;
  8.     j=&i;
  9.     printf("%a",&i);
  10.     printf("\n");
  11.     printf("%a",*j);
  12.     return 0;
  13. }