InterviewSolution
Saved Bookmarks
| 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; |
|