torrescancelj torrescancelj Today at 9:48 PM Computers and Technology Answered 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);}