Which type of conversion will take
place in : int x; long k=200; x=(int) k;
inplicit or explicit
Attachments:
Answers
Answered by
1
Answer:
it is explicit as (int) is used which is the way to explicitly type cast a value.
syntax for type casting
(data type which is req for expression) expression ;
Similar questions