49.

public static void Main()
{
  readonly int x = 5;
  const int y=12;
}

Generate a compile error why?

The readonly keyword is a modifier that you can use on fields.