fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int i = 0, j = 0;
  6.  
  7. int *a , *b;
  8.  
  9. a = &i + 1;
  10. b = &j;
  11.  
  12. printf(" %p \n ",a);
  13. printf(" %p \n ",b);
  14.  
  15. if(a==b)
  16. printf(" yo \n");
  17.  
  18.  
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
 0x7ffeef0c6c4c 
  0x7ffeef0c6c4c