fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int i1 = 1;
  5. int i2 = 1;
  6. int i3 = 1;
  7. printf("i1 : %p\n", &i1);
  8. printf("i2 : %p\n", &i2);
  9. printf("i3 : %p\n", &i3);
  10. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
i1 : 0x7ffe7b294914
i2 : 0x7ffe7b294918
i3 : 0x7ffe7b29491c