Computer Science, asked by vermaameesha, 1 year ago

Explain Explicit type conversion with examples.


Hacket: Okkk
vermaameesha: I'm not interested
vermaameesha: sorry
vermaameesha: i love to be alone
Hacket: It is public comment
vermaameesha: i know
Hacket: Then y u people use public comments for personal discussion
Hacket: This is educational site not a dating site

Answers

Answered by Hacket
13

In explicit type conversion bigger data type is converted to smaller data type.

Explicit type conversion is done by user with the help of type cast operator.

Example-

int x=30;

byte y=(byte)x;

Here int type is converted to byte type

Answered by rameshgummadi14
0

Answer:

explicit type conversion bigger data type is converted to smaller data type. explicit type conversion is done by user with the help of type cast operator .example:

int X=30

byte y= ( byte) X;

Similar questions