Answers for "cast int as char c"

C
6

int to char in c

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

casting an int to a char in c

Use ASCII chart.
int i=65;
char ch;
ch= (char)i;
printf("Expected value of ch: A. This value is found by using a ASCII chart");
Posted by: Guest on October-15-2020

Code answers related to "C"

Browse Popular Code Answers by Language