fork(1) download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main() {
  5. int *x = (int*)malloc(sizeof(int));
  6. int *y = (int*)malloc(sizeof(int));
  7.  
  8. *x = 42;
  9. free(x);
  10.  
  11. *y = 100;
  12. free(y) ;
  13. }
  14.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty