1.

Why is f required while declaring C# floats?

Answer»

It is a suffix set in C# that is used while DECLARING FLOAT. This is used to INFORM the COMPILER the type of the literal. An example:

float a = 1239f;


Discussion

No Comment Found