Report Bug
Qus : What are the different types of real data type in C ?
QusC में विभिन्न प्रकार के real डेटा प्रकार क्या हैं?

A. float, double
B. short int, double, long int
C. float, double, long double
D. double, long int, float


Solution
C. float, double, long double



Explanation
The floating point data types are called real data types. Hence float, double, and long double are real data types.



Report Bug