¿Qué imprime el siguiente código?
int a = 5; int b = 10; int c = a > b ? a : b; Console.WriteLine(c);
Error de compilación
10
5
No imprime nada