fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main() {
  5. int* x = NULL, *y = (int*)malloc(sizeof(int));
  6. printf("%x\n%x", x, y);
  7. return 0;
  8. }
Success #stdin #stdout 0s 1964KB
stdin
Standard input is empty
stdout
0
8cab008