All quizzes
C#IntroFill the blank

Fill in the operator so that input is used when it is not null, otherwise the string "guest" is used.

string? input = null;
string user = input ____ "guest";
Console.WriteLine(user); // prints guest