What are floating point literals in C#?
Answers
Answered by
0
Floating-point Literals. A floating-point literal has an integer part, a decimal point, a fractional part, and an exponent part. You can represent floating point literals either in decimal form or exponential form.The signed exponent is introduced by e or E
Answered by
0
Floating point literals:- floating point literals are those token where value never change during program run.
example:- const float value= 2.5;
Similar questions