fork(6) download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int i = 3;
  5. int* j = &i;
  6. printf("%p",(void *)j);
  7. }
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
0xbfa8547c