Answers for "int to char function"

C
13

int to char in c

c = i +'0';
Posted by: Guest on October-20-2020
9

int to char java

int a = 65;  
char c = (char)a; 
System.out.print(c);// Printing: A
Posted by: Guest on January-26-2021

Code answers related to "C"

Browse Popular Code Answers by Language