Home » C Programming » Variables » Question
  1. Which of the following correctly represents a long double constant ?
    1. 2.29
    2. 2.29L
    3. 2.29f
    4. 2.29LF
Correct Option: B

2.29 is double.
2.29L is long double constant.
2.29f is float constant.
2.29LF is not allowed in c.



Your comments will be displayed only after manual approval.