fork download
  1. #include <stdio.h>
  2. typedef struct node{
  3. int data;
  4. node* next;
  5. };
  6. int main() {
  7. return 0;
  8. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:4: error: expected specifier-qualifier-list before ‘node’
prog.c:5: warning: useless storage class specifier in empty declaration
stdout
Standard output is empty