Answers for "convert sequence of chars to int c"

C
0

c convert char to int

int i = (int)(c - '0');
Posted by: Guest on October-29-2020
1

char to int in c

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

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