Open In App

C Quiz – 102 | Question 3

Suppose a C program has floating constant 1.414, what’s the best way to convert this as “float” data type?

(A) (float)1.414
(B) float(1.414)
(C) 1.414f or 1.414F
(D) 1.414 itself of “float” data type i.e. nothing else required.

Answer: (C)
Explanation: By default floating constant is of double data type. By suffixing it with f or F, it can be converted to float data type. For more details, this post can be referred here.

Quiz of this Question

Article Tags :