fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. struct cellule {
  5. int nb;
  6. struct cellule * suiv;
  7. };
  8.  
  9. int init(struct cellule ** c)
  10. {
  11. *c = NULL;
  12. return 0;
  13. }
  14.  
  15. int main()
  16. {
  17. struct cellule * l;
  18.  
  19. init(&l);
  20. return 0;
  21. }
Success #stdin #stdout 0s 2164KB
stdin
Standard input is empty
stdout
Standard output is empty