Answers for "c convert char of int to int"

C
0

c convert char to int

int i = (int)(c - '0');
Posted by: Guest on October-29-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
0

c char to int

int i;
char c = 'A'; 
i = (int)c;
Posted by: Guest on July-11-2020

Code answers related to "C"

Browse Popular Code Answers by Language