fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct element element;
  4. struct element {
  5. int value;
  6. element *next;
  7. };
  8.  
  9. int main(void) {
  10. element e1, e2;
  11. e1.value = 123;
  12. e2.next=&e1;
  13. // your code goes here
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Standard output is empty