fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(void) {
  4. char *bla = (char *)malloc(sizeof(char)*4);
  5.  
  6. free(bla);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 2288KB
stdin
Standard input is empty
stdout
Standard output is empty