fork download
  1. #include <stdlib.h>
  2.  
  3. int main() {
  4. char* x = malloc(10);
  5. *x = 0;
  6. return x[0];
  7. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
Standard output is empty