fork(5) download
  1. #include <cinttypes>
  2. #include <cstdint>
  3. #include <cstdio>
  4.  
  5. int main() {
  6. int i = 123;
  7. void* p = &i;
  8. printf("%08" PRIxPTR "\n", (uintptr_t)p);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
7fff2efd976c