fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int x, y, z;
  6. int v[20];
  7. x = v[0];
  8. y = v[1];
  9. z = v[2];
  10. printf("%p\n",x);
  11. printf("%p\n",y);
  12. printf("%p\n",z);
  13. printf("%p\n",v);
  14. }
  15.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
0xff834464
0xff8343d8
0xff8343d0
0xff8343b0