Answers for "c turn char of int to int"

C
6

int to char in c

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