Answers for "how to convert array of char to integer in embedded c"

C
1

char array to int c

char myarray[5] = {'-', '1', '2', '3', '\0'};
int i;
sscanf(myarray, "%d", &i);
Posted by: Guest on March-29-2021

Code answers related to "how to convert array of char to integer in embedded c"

Code answers related to "C"

Browse Popular Code Answers by Language