Q95
What will be the output of the following C# code? static void Main(string[] args) int x = 4 ,b = 2; x -= b/= x * b; Console.WriteLine(x + " " + b); Console.ReadLine();
A.
4 2
B.
0 4
C.
4 0
AnswerD.
2 2
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board