Q49
What will be the output of the following C# code? struct abc int i; class Program static void Main(string[] args) abc x = new abc(); abc z; x.i = 10; z = x; z.i = 15; console.Writeline(x.i + " " + y.i)
A.
10 10
B.
10 15
AnswerC.
15 10
D.
15 15
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board