fork download
  1. #include <cstdio>
  2. int main(int a, char** b){
  3.  
  4. ( a > 1
  5. ? []{ puts("num of params > 1"); }
  6. : []{ puts("num of params <= 0"); }
  7. )();
  8.  
  9. }
  10.  
Success #stdin #stdout 0s 2928KB
stdin
Standard input is empty
stdout
num of params <= 0