fork(1) download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. struct node {
  5. int data;
  6. struct node *next;
  7. };
  8.  
  9. int main()
  10. {
  11. struct node *node = malloc(sizeof(*node));
  12. free(node);
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 2376KB
stdin
Standard input is empty
stdout
Standard output is empty