Answers for "casting chars to ints in c"

C
8

turn a char into an int in c

int x = character - '0';
Posted by: Guest on November-04-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

char to int in c

strcpy(str, "98993489");
   val = atoi(str);
   printf("String value = %s, Int value = %d\n", str, val);
Posted by: Guest on February-19-2021

Code answers related to "C"

Browse Popular Code Answers by Language