fork download
  1. #include<stdio.h>
  2. int main(void)
  3. {
  4. int a;
  5. volatile int b;
  6. volatile int c;
  7. int d;
  8. printf("%p\n", (void*)&a);
  9. printf("%p\n", (void*)&b);
  10. printf("%p\n", (void*)&c);
  11. printf("%p\n", (void*)&d);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5520KB
stdin
Standard input is empty
stdout
0x7ffe1ef5ffb8
0x7ffe1ef5ffbc
0x7ffe1ef5ffc0
0x7ffe1ef5ffc4