type casting char in java code example
Example: int to char java
int c=123;
String s = Integer.toString(c);
for(char ch: s.toCharArray())
System.out.print(ch+",");
int c=123;
String s = Integer.toString(c);
for(char ch: s.toCharArray())
System.out.print(ch+",");