static void Main(string[] args)
{
double y = 23.12F;
Console.WriteLine(y);
Console.Read();
}
why value of y shows 23.1200008392334 instead of 23.12
static void Main(string[] args)
{
int i = -9; uint j = (uint)i;
Console.WriteLine(j);
Console.Read();
}
How j shows value 4294967287