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.414 F
D None of these

Correct Answer: 1,414f or 1.414 F

#include "stdio.h" int main() { printf("%d %d",sizeof(3.14F), sizeof(3.14L)); return 0; } Output: 4 16 উল্লেখ্য, Float এবং Integer Data Type এর জন্য কম্পিউটারে 4 Byte জায়গা প্রয়োজন। এছাড়া, Long Data Type এর জন্য 16 Byte জায়গা প্রয়োজন।
Bissoy MCQ

Related Questions

I saw a floating flower in the pond. Here floating is__
Which of the following function convert a string to a float in python ?
Which of the following is the correct way of declaring a float pointer:
Several objectives are required to achieve a successful data base management program. These are availability of data, quality of data, and

Next steps