Report Bug
Qus : which is used to converts an expression to a specified data type
Qus जिसका उपयोग किसी expression को एक specified डेटा प्रकार में परिवर्तित करने के लिए किया जाता है

A. Logical Operator
B. Conditional Operator
C. typecast
D. Ternary


Solution
C. typecast



Explanation

Type casting refers to changing an variable of one data type into another. The compiler will automatically change one type of data into another if it makes sense. For instance, if you assign an integer value to a floating-point variable, the compiler will convert the int to a float.




Report Bug