MCQs>IT & Programming>C#>What does the following code do? unchecked { int i = Int32.MaxValue; int j = i; int product = i * j; Console.WriteLine(product); }
C# MCQs
What does the following code do? unchecked { int i = Int32.MaxValue; int j = i; int product = i * j; Console.WriteLine(product); }
Answer
Correct Answer: Outputs "1"
Explanation:
Note: This Question is unanswered, help us to find answer for this one