Q50
What will be the output of the following C# code snippet? class maths public int fact(int n) int result; result = fact(n - 1) * n; return result; class Program static void Main(string[] args) maths obj = new maths(); Console.WriteLine(obj.fact(4)); Console.ReadLine();
A.
24
B.
30
C.
Compile time error
D.
Runtime Error
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board