fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct L L;
  4.  
  5. struct L
  6. {
  7. int symb;
  8. L* next;
  9. };
  10.  
  11. typedef L *LL;
  12.  
  13. int main(void) {
  14. // your code goes here
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 2048KB
stdin
Standard input is empty
stdout
Standard output is empty