Vidyalelo
C# Programming · Q57

Classes and Objects in C Sharp

Programming · C# Programming · question 57

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
Answer
C.
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