fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int *x, *y;
  5. x = &(y);
  6. y = &(x);
  7. printf("%d\n",*x);
  8. printf("%d",*y);
  9. //printf(*y);
  10. // your code goes here
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
-1727640
-1727636