Write the type of conversion of the following expressions.
i) (int) x*y;
ii) a-b+c;
Answers
Answered by
0
Answer: answer is down
Explanation: The process of converting one predefined type into another is called type conversion. In an implicit conversion, the result of a mixed mode expression is obtained in the higher most data type of the variables without any intervention by the user. For example: int a = 10; float b = 25.5f, c;c = a + b;
Similar questions