fork download
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. int *p=(int*)malloc(sizeof(int));
  5. *p=3;
  6. printf("%d\n",*p);
  7. printf("%p\n",(void*)p);
  8. return 0;
  9. }
Success #stdin #stdout 0s 2140KB
stdin
Standard input is empty
stdout
3
0x8516008