MCQs>IT & Programming>C#>Consider the following C# code: int x = 123; if (x) { Console.Write('The value of x is nonzero.'); } What happens when it is executed?
C# MCQs
Consider the following C# code: int x = 123; if (x) { Console.Write("The value of x is nonzero."); } What happens when it is executed?
Answer
Correct Answer: An error message will be displayed - this code is invalid in C#.
Explanation:
Note: This Question is unanswered, help us to find answer for this one