) State the type of conversion being performed
char ch=(char)in.read();
Answers
Answered by
1
Answer:
explicit type conversion into char
Explanation:
hope it helps. :)
Answered by
2
- State the type of conversion being performed here.
Given code snippet,
This type of conversion is called explicit type conversion in which data types are converted as per the users choice. The user can forcibly convert one data type to another.
Similar questions