fork(1) download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int a = 42;
  5. void* p = &a;
  6. printf("Pointer address: %08p", p);
  7. return 0;
  8. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Pointer address: 0x7ffde01ef41c