the below code is not printing anything, can someone tell me what is exactly wrong with this
public class Main
{
public static void main(String[] args) {
int i = 2;
char c = (char)i;
System.out.println(c);
}
}
the below code is not printing anything, can someone tell me what is exactly wrong with this
public class Main
{
public static void main(String[] args) {
int i = 2;
char c = (char)i;
System.out.println(c);
}
}