Answers for "how to convert a char to an int c"

C
8

turn a char into an int in c

int x = character - '0';
Posted by: Guest on November-04-2020
6

int to char in c

c = i +'0';
Posted by: Guest on October-20-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