fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void) {
  5. // your code goes here
  6.  
  7. int *x = (int*) malloc(sizeof(int));
  8.  
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2152KB
stdin
Standard input is empty
stdout
Standard output is empty