Answers for "char to string c"

C
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