fork(1) download
  1. unsigned factorial_times_2(unsigned n) {
  2. unsigned result;
  3.  
  4. if (n<2u) result=1u;
  5. result = n * (factorial_times_2(n-1u)/2u);
  6.  
  7. return result * 2u;
  8. }
  9. int main(void) {
  10. return factorial_times_2(~0u)/2u;
  11. }
  12.  
Runtime error #stdin #stdout 0s 11512KB
stdin
Standard input is empty
stdout
Standard output is empty