Answers for "write int into char array in c"

C
1

char array to int c

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

int to char in c

c = i +'0';
Posted by: Guest on October-20-2020

Code answers related to "C"

Browse Popular Code Answers by Language