fork download
  1. #include <stdio.h>
  2. typedef struct word {
  3. char *letter;
  4. struct word *next;
  5. } Word;
  6. typedef struct word SequenceL;
  7. typedef Word Something;
  8. int main(void) {
  9. // your code goes here
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2048KB
stdin
Standard input is empty
stdout
Standard output is empty