Q. What will be the output of the following C# code?
Code:static void Main(string[] args)
{
float a = 10.553f;
long b = 12L;
int c;
c = Convert.ToInt32(a + b);
Console.WriteLine(c);
}
β
Correct Answer: (C)
23