fork download
  1. #include <stdlib.h>
  2.  
  3. typedef struct
  4. {
  5. int field;
  6. } Huita;
  7.  
  8. struct Huita * huita_new(int value)
  9. {
  10. Huita * huita = (Huita *)malloc(sizeof(Huita));
  11. huita->field = value;
  12. return huita;
  13. }
  14.  
  15. int main()
  16. {
  17.  
  18. }
Success #stdin #stdout 0s 9296KB
stdin
Standard input is empty
stdout
Standard output is empty