315 views
0 votes
0 votes

Please log in or register to answer this question.

Related questions

1 votes
1 votes
2 answers
2
0 votes
0 votes
1 answer
3
0 votes
0 votes
0 answers
4
LavTheRawkstar asked Jun 29, 2016
387 views
class Value { public static void main(String [] s ) { int i = 255;byte b=(byte)i ;char c = (char)b;System.out.println("int value of char : " + (int) c);} }