What is the output of the following code?

private static void updateage (ref int age)
age;


public static void main(string[] args)
int age = 14;
updateage(ref age);
Console.WriteLine(age);

Respuesta :

Otras preguntas