| 9. | What will you do to treat the constant 3.14 as a long double? |
|||||||
Answer: Option B Explanation: Given 3.14 is a double constant. To specify 3.14 as long double, we have to add L to the 3.14. (i.e 3.14L) |
| 10. | What are the different types of real data type in C ? |
|||||||
Answer: Option C Explanation: The floating point data types are called real data types. Hence float, double, and long double are real data types. |
