Answers for "how to convert integer to string in c without using library functions"

1

c int to string

int i = 69;
char str[256];

itoa(i,str,10); //Base 10

//str = "69"
Posted by: Guest on May-07-2022
1

objective c convert int to string

NSString* myNewString = [NSString stringWithFormat:@"%d", myInt];
Posted by: Guest on March-03-2020

Code answers related to "how to convert integer to string in c without using library functions"

Browse Popular Code Answers by Language