how can i convert int to char or string
now les say: i want to convert int to char
ex:
int a = 3
char b = '3'
note they both are same number
or int to String
int a = 35;
String c = "35";
note i already tried
b = (char)a; but failed. it print weird symbol