Q57
What will be the output of the following C# code? static void Main(string[] args) int a = 5; int s = 0, c = 0; Mul (a, ref s, ref c); Console.WriteLine(s + "t " +c); Console.ReadLine(); static void Mul (int x, ref int ss, ref int cc) ss = x * x; cc = x * x * x;
A.
125 25
B.
25 125
AnswerC.
Compile time error
D.
0 0
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board