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