fork download
  1. #include <stdio.h>
  2. #include <stdint.h> // For uintptr_t
  3.  
  4. int main() {
  5. int x = 42;
  6. int *p = &x;
  7.  
  8. uintptr_t addr = (uintptr_t)p; // Convert pointer to integer
  9. printf("Address as integer: %lu (hex: 0x%lx)\n", addr, addr);
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Address as integer: 140732968307812 (hex: 0x7ffef2958c64)