Q45
What will be the output of the following C# code? static void Main(string[] args) Mul(); m(); Console.ReadLine(); static void Mul() Console.WriteLine("4"); static void m() Console.WriteLine("3"); Mul();
A.
4 3 3
B.
4 4 3
C.
4 3 4
AnswerD.
3 4 4
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board