Identify the output of the code:
class Site {
static void Main(string[] args) {
int a;
Site(out a);
Console.WriteLine("The value of variable is" + a);
}
public static void Site(out int i) {
i = 4;
}
}
Reveal answer
Fill a bubble to check yourself