Ask the Community
Ask any professional question and get answers from other specialists.
a) Errorb) Exceptionc) Throwabled) Throw
class math { public int fact(int n) { int result; result = fact(n -1)* n; return result; } } class Program { staticvoid Main(string[] args) { maths obj =ne ... See More