What will be the output of the following program?
class CharDemo
{
public static void main(String args[])
{
char ch1 = 88; // 88 is character code of X
char ch2 = 'Y'; // Y character code is 89
int i1 = ch1;
System.out.println("i1 = " + i1);
System.out.println("ch1 = " + ch1);
System.out.println("ch2 = " + ch2);
}
}