fork download
  1. void f1();
  2. void f2(void);
  3. void f3(...);
  4.  
  5.  
  6. void f1() {}
  7. void f2(void) {}
  8. void f3() {}
  9.  
  10.  
  11. int main() {
  12. f1();
  13. f2();
  14. f3();
  15.  
  16. return 0;
  17. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:3:9: error: ISO C requires a named argument before ‘...’
 void f3(...);
         ^
stdout
Standard output is empty