Computer Science, asked by sarah8744, 5 months ago

Which type of conversion will take
place in : int x; long k=200; x=(int) k;
inplicit or explicit​

Attachments:

Answers

Answered by a321038
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