fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. void f(int...)
  6. {
  7. };
  8.  
  9. int main() {
  10. f(0);
  11. f(1, 4);
  12. return cout<<"kokok!", 0;
  13. }
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
kokok!