Cast Demo

You might also like

You are on page 1of 1

// A program rltd.

to explicit casting
public class Castdemo
{
public static void main (String[ ] arg)
{
byte b=15;
int num =b;
System.out.println(num);
}
}

You might also like