How does C# execute this?
static void Main(string[] args)
{
int i = 4;
i *= 4 + 8 / 2;
Console.WriteLine(i);
}
This was asked in one of the interview Questions. And I applied BODMAS to it. But it was wrong. Please Explain.