class file_name{
public static void main(String ar[]){
int i=127;
byte b;
b=(byte)i;
System.out.println(b);
}
}
OutPut
----------------------
a
public static void main(String ar[]){
int i=127;
byte b;
b=(byte)i;
System.out.println(b);
}
}
OutPut
----------------------
a
No comments:
Post a Comment