Computer Science, asked by harishankerverma286, 7 months ago

) State the type of conversion being performed
char ch=(char)in.read();​

Answers

Answered by hamda
1

Answer:

explicit type conversion into char

Explanation:

hope it helps. :)

Answered by anindyaadhikari13
2

\star\:\:\:\sf\large\underline\blue{Question:-}

  • State the type of conversion being performed here.

\star\:\:\:\sf\large\underline\blue{Answer:-}

Given code snippet,

  \boxed{ \sf char \: ch = (char)in.read();}

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