Meron3r's blog

By Meron3r, history, 3 months ago, In English
unsigned long long factorial(unsigned int x) {
    
    if (x == 0 || x == 1) return 1;
    
    return x * factorial(x - 1);
    
}
  • Vote: I like it
  • -40
  • Vote: I do not like it

»
3 months ago, # |
  Vote: I like it +3 Vote: I do not like it

Stop making useless blogs and do some questions. Even ChatGPT can make these functions.