torrescancelj torrescancelj 16-01-2023 Computers and Technology contestada What is wrong, if anything, with the following function, used to calculate a factorial?unsigned int fact (unsigned int n){ return n + fact(n-1);}