Consider the following C# code. What would be the value of d?
int? a = 10;
int? b = 11;
int? c = 12;
a = null;
int? d = a ?? b ?? c;
Correct Answer: 11
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More C# MCQ Questions